DBA Data[Home] [Help]

APPS.FND_GLOBAL dependencies on FND_CORE_LOG

Line 102: -- Logging to fnd_core_log circumvents other logging.

98: -- Wildcard name for determining when to dump the stack when the
99: -- name's value is changed.
100: debug_trace_name fnd_profile_option_values.profile_option_value%type;
101:
102: -- Logging to fnd_core_log circumvents other logging.
103: -- That is, if this is enabled, the other two methods
104: -- will not be reached.
105: debug_to_core boolean := false;
106:

Line 144: debug_to_core := fnd_core_log.enabled <> 'N';

140: is
141: dest varchar2(30);
142: begin
143:
144: debug_to_core := fnd_core_log.enabled <> 'N';
145:
146: dest := upper(sys_context(FND_CONST.FND,'FND_GLOBAL_DEBUG_LOGGING'));
147: debug_to_console := dest like '%CONSOLE%';
148: debug_to_table := dest like '%TABLE%';

Line 179: -- DO NOT call anything outside fnd_global except fnd_core_log.put.

175:
176: -- General purpose debugger. Will direct debugging based on
177: -- the debug_to_* flags above.
178: -- DO NOT use any fnd_global routines within this routine.
179: -- DO NOT call anything outside fnd_global except fnd_core_log.put.
180: procedure debugger(text varchar2)
181: is
182: pragma autonomous_transaction;
183: begin

Line 188: fnd_core_log.put('FG.D:'||userenv('sessionid')||':'||text||newline);

184:
185: if not is_debugging then return; end if;
186:
187: if debug_to_core then
188: fnd_core_log.put('FG.D:'||userenv('sessionid')||':'||text||newline);
189: return;
190: end if;
191:
192: if debug_to_console then

Line 2201: fnd_core_log.write('FG.I',

2197: --
2198: -- Core Logging
2199: --
2200: if debug_to_core then
2201: fnd_core_log.write('FG.I',
2202: user_id,
2203: resp_id,
2204: resp_appl_id,
2205: org_id,