DBA Data[Home] [Help]

APPS.GL_FUNDS_CHECKER_PKG dependencies on FND_MESSAGE

Line 90: /* using FND_MESSAGE. The calling routine will retrieve the message from */

86: /* */
87: /* This routine returns TRUE if successful; otherwise, it returns FALSE */
88: /* */
89: /* In case of failure, this routine will populate the global Message Stack */
90: /* using FND_MESSAGE. The calling routine will retrieve the message from */
91: /* the Stack */
92: /* */
93: /* When invoked from a Concurrent Process, the calling process has to */
94: /* initialize values for User ID, User Responsibility ID, Calling */

Line 103: /* FND_MESSAGE */

99: /* */
100: /* FND_GLOBAL */
101: /* FND_PROFILE */
102: /* FND_INSTALLATION */
103: /* FND_MESSAGE */
104: /* FND_FLEX_EXT */
105: /* FND_FLEX_APIS */
106: /* */
107: /* GL Tables which are being used include : */

Line 400: FND_MESSAGE.SET_NAME(appname, msgname);

396:
397: if ((appname is not null) and
398: (msgname is not null)) then
399:
400: FND_MESSAGE.SET_NAME(appname, msgname);
401:
402: if g_no_msg_tokens is not null then
403:
404: for i in 1..g_no_msg_tokens loop

Line 405: FND_MESSAGE.SET_TOKEN(msg_tok_names(i), msg_tok_val(i));

401:
402: if g_no_msg_tokens is not null then
403:
404: for i in 1..g_no_msg_tokens loop
405: FND_MESSAGE.SET_TOKEN(msg_tok_names(i), msg_tok_val(i));
406: end loop;
407:
408: end if;
409: