DBA Data[Home] [Help]

APPS.FND_LOG dependencies on FND_GLOBAL

Line 35: internal_messages := internal_messages || msg || fnd_global.newline;

31:
32: /* Set the contents of the message buffer */
33: procedure INTERNAL_MESSAGE(msg VARCHAR2) IS
34: begin
35: internal_messages := internal_messages || msg || fnd_global.newline;
36: end;
37:
38: /* Set error message and raise exception for unexpected sql errors */
39:

Line 112: ** FND_GLOBAL.INITIALIZE, since some of the context information

108: ** component. (e.g. A concurrent request, service process,
109: ** open form, ICX function)
110: **
111: ** This routine should be called only after
112: ** FND_GLOBAL.INITIALIZE, since some of the context information
113: ** is retrieved from FND_GLOBAL.
114: **
115: ** Arguments:
116: ** CONC_REQUEST_ID - Concurrent request id

Line 113: ** is retrieved from FND_GLOBAL.

109: ** open form, ICX function)
110: **
111: ** This routine should be called only after
112: ** FND_GLOBAL.INITIALIZE, since some of the context information
113: ** is retrieved from FND_GLOBAL.
114: **
115: ** Arguments:
116: ** CONC_REQUEST_ID - Concurrent request id
117: ** FORM_ID - Form id

Line 550: FND_GLOBAL.SET_NLS_CONTEXT(p_nls_language => LANG);

546:
547:
548: if (LANG is not NULL) then
549: begin
550: FND_GLOBAL.SET_NLS_CONTEXT(p_nls_language => LANG);
551: exception
552: when others then
553: /*--------------------------------------------------------------+
554: | If LANG parameter is bad, set a message then continue in the |