DBA Data[Home] [Help]

APPS.FND_GLOBAL dependencies on FND_CORE_LOG

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

73: -- Wildcard name for determining when to dump the stack when the
74: -- name's value is changed.
75: debug_trace_name fnd_profile_option_values.profile_option_value%type;
76:
77: -- Logging to fnd_core_log circumvents other logging.
78: -- That is, if this is enabled, the other two methods
79: -- will not be reached.
80: debug_to_core boolean := false;
81:

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

105: is
106: dest varchar2(30);
107: begin
108:
109: debug_to_core := fnd_core_log.enabled <> 'N';
110:
111: dest := upper(sys_context(FND_CONST.FND,'FND_GLOBAL_DEBUG_LOGGING'));
112: debug_to_console := dest like '%CONSOLE%';
113: debug_to_table := dest like '%TABLE%';

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

140:
141: -- General purpose debugger. Will direct debugging based on
142: -- the debug_to_* flags above.
143: -- DO NOT use any fnd_global routines within this routine.
144: -- DO NOT call anything outside fnd_global except fnd_core_log.put.
145: procedure debugger(text varchar2)
146: is
147: pragma autonomous_transaction;
148: begin

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

149:
150: if not is_debugging then return; end if;
151:
152: if debug_to_core then
153: fnd_core_log.put('FG.D:'||userenv('sessionid')||':'||text||newline);
154: return;
155: end if;
156:
157: if debug_to_console then

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

1973: --
1974: -- Core Logging
1975: --
1976: if debug_to_core then
1977: fnd_core_log.write('FG.I',
1978: user_id,
1979: resp_id,
1980: resp_appl_id,
1981: org_id,