DBA Data[Home] [Help]

APPS.INV_LOG_UTIL dependencies on FND_API

Line 38: --extra calls to fnd api.

34: l_dir_separator varchar2(1);
35: l_session varchar2(256);
36: l_message VARCHAR2(2000);
37: --Bug 3559334 fix. Variable not used in code, but resulting in
38: --extra calls to fnd api.
39: --l_debug number := NVL(FND_PROFILE.VALUE('INV_DEBUG_TRACE'),0);
40: BEGIN
41: -- Since the forms-server and MWA server recycles database connections
42: -- we need to always check for debug profiles values and see if they

Line 113: -- occurence of fnd_api.g_miss_char -- initialized to chr(0)in the fnd

109: l_timestamp := '[' || to_char(sysdate,'DD-MON-YY HH24:MI:SS') || '] ';
110:
111: -- Bug 3695496: The log file gets truncated if g_miss_char is sent to
112: -- the output file. The text has to be searched and replaced for any
113: -- occurence of fnd_api.g_miss_char -- initialized to chr(0)in the fnd
114: -- API.
115:
116: l_message := REPLACE
117: ( p_message,

Line 118: FND_API.G_MISS_CHAR,

114: -- API.
115:
116: l_message := REPLACE
117: ( p_message,
118: FND_API.G_MISS_CHAR,
119: 'FND_API.G_MISS_CHAR'
120: );
121:
122: --If called from a concurrent program add msg to FND log

Line 119: 'FND_API.G_MISS_CHAR'

115:
116: l_message := REPLACE
117: ( p_message,
118: FND_API.G_MISS_CHAR,
119: 'FND_API.G_MISS_CHAR'
120: );
121:
122: --If called from a concurrent program add msg to FND log
123: if ( g_cp_flag > 0 ) then