DBA Data[Home] [Help]

APPS.ICX_POR_EXT_UTL dependencies on FND_GLOBAL

Line 26: UTL_FILE_ERR_MSG VARCHAR2(1000) := fnd_global.newline ||

22: gFatalException EXCEPTION;
23: gException EXCEPTION;
24:
25: -- PCREDDY: Bug # 3488764: Error message for file open error
26: UTL_FILE_ERR_MSG VARCHAR2(1000) := fnd_global.newline ||
27: '=============================================================================' ||
28: fnd_global.newline ||
29: 'Unable to write the debug messages to the log file.' ||
30: fnd_global.newline ||

Line 28: fnd_global.newline ||

24:
25: -- PCREDDY: Bug # 3488764: Error message for file open error
26: UTL_FILE_ERR_MSG VARCHAR2(1000) := fnd_global.newline ||
27: '=============================================================================' ||
28: fnd_global.newline ||
29: 'Unable to write the debug messages to the log file.' ||
30: fnd_global.newline ||
31: 'FIX:' ||
32: fnd_global.newline ||

Line 30: fnd_global.newline ||

26: UTL_FILE_ERR_MSG VARCHAR2(1000) := fnd_global.newline ||
27: '=============================================================================' ||
28: fnd_global.newline ||
29: 'Unable to write the debug messages to the log file.' ||
30: fnd_global.newline ||
31: 'FIX:' ||
32: fnd_global.newline ||
33: 'Ensure that the virtual path assigned to the ' ||
34: 'APPLPTMP environment variable is valid, writable, and is referenced ' ||

Line 32: fnd_global.newline ||

28: fnd_global.newline ||
29: 'Unable to write the debug messages to the log file.' ||
30: fnd_global.newline ||
31: 'FIX:' ||
32: fnd_global.newline ||
33: 'Ensure that the virtual path assigned to the ' ||
34: 'APPLPTMP environment variable is valid, writable, and is referenced ' ||
35: 'at the beginning of the UTL_FILE_DIR database parameter in init.ora.' ||
36: fnd_global.newline ||

Line 36: fnd_global.newline ||

32: fnd_global.newline ||
33: 'Ensure that the virtual path assigned to the ' ||
34: 'APPLPTMP environment variable is valid, writable, and is referenced ' ||
35: 'at the beginning of the UTL_FILE_DIR database parameter in init.ora.' ||
36: fnd_global.newline ||
37: '=============================================================================' ||
38: fnd_global.newline;
39:
40: PROCEDURE setDebugLevel(pLevel IN PLS_INTEGER);

Line 38: fnd_global.newline;

34: 'APPLPTMP environment variable is valid, writable, and is referenced ' ||
35: 'at the beginning of the UTL_FILE_DIR database parameter in init.ora.' ||
36: fnd_global.newline ||
37: '=============================================================================' ||
38: fnd_global.newline;
39:
40: PROCEDURE setDebugLevel(pLevel IN PLS_INTEGER);
41: PROCEDURE debug(pLevel IN PLS_INTEGER,
42: pMsg IN VARCHAR2) ;