DBA Data[Home] [Help]

APPS.FFFUNC dependencies on FND_MESSAGE

Line 37: A Rashid 11-JUL-2002 Added GFM for FND message handling.

33: function does not use the FX
34: qualifier which allows certain
35: DD-MON-YYYY date strings to be
36: incorrectly accepted.
37: A Rashid 11-JUL-2002 Added GFM for FND message handling.
38: A Rashid 12-JUL-2002 Hold DD-MON-YYYY date format in a
39: local variable to get around GSSC
40: compliance fatal error. DD-MON-YYYY
41: is the legacy FF date format.

Line 240: fnd_message.set_name(p_application, p_message);

236: begin
237: --
238: -- Keep this code as simple as possible.
239: --
240: fnd_message.set_name(p_application, p_message);
241: --
242: if p_token_name1 is not null and p_token_value1 is not null then
243: fnd_message.set_token(p_token_name1, p_token_value1, false);
244: end if;

Line 243: fnd_message.set_token(p_token_name1, p_token_value1, false);

239: --
240: fnd_message.set_name(p_application, p_message);
241: --
242: if p_token_name1 is not null and p_token_value1 is not null then
243: fnd_message.set_token(p_token_name1, p_token_value1, false);
244: end if;
245: --
246: if p_token_name2 is not null and p_token_value2 is not null then
247: fnd_message.set_token(p_token_name2, p_token_value2, false);

Line 247: fnd_message.set_token(p_token_name2, p_token_value2, false);

243: fnd_message.set_token(p_token_name1, p_token_value1, false);
244: end if;
245: --
246: if p_token_name2 is not null and p_token_value2 is not null then
247: fnd_message.set_token(p_token_name2, p_token_value2, false);
248: end if;
249: --
250: if p_token_name3 is not null and p_token_value3 is not null then
251: fnd_message.set_token(p_token_name3, p_token_value3, false);

Line 251: fnd_message.set_token(p_token_name3, p_token_value3, false);

247: fnd_message.set_token(p_token_name2, p_token_value2, false);
248: end if;
249: --
250: if p_token_name3 is not null and p_token_value3 is not null then
251: fnd_message.set_token(p_token_name3, p_token_value3, false);
252: end if;
253: --
254: if p_token_name4 is not null and p_token_value4 is not null then
255: fnd_message.set_token(p_token_name4, p_token_value4, false);

Line 255: fnd_message.set_token(p_token_name4, p_token_value4, false);

251: fnd_message.set_token(p_token_name3, p_token_value3, false);
252: end if;
253: --
254: if p_token_name4 is not null and p_token_value4 is not null then
255: fnd_message.set_token(p_token_name4, p_token_value4, false);
256: end if;
257: --
258: if p_token_name5 is not null and p_token_value5 is not null then
259: fnd_message.set_token(p_token_name5, p_token_value5, false);

Line 259: fnd_message.set_token(p_token_name5, p_token_value5, false);

255: fnd_message.set_token(p_token_name4, p_token_value4, false);
256: end if;
257: --
258: if p_token_name5 is not null and p_token_value5 is not null then
259: fnd_message.set_token(p_token_name5, p_token_value5, false);
260: end if;
261: --
262: -- Just return the message name itself if the text is NULL,
263: -- otherwise return the (truncated) message text.

Line 265: return substrb(nvl(fnd_message.get, p_message), 1, FF_EXEC.FF_BIND_LEN);

261: --
262: -- Just return the message name itself if the text is NULL,
263: -- otherwise return the (truncated) message text.
264: --
265: return substrb(nvl(fnd_message.get, p_message), 1, FF_EXEC.FF_BIND_LEN);
266: end gfm;
267: --
268: end fffunc;