DBA Data[Home] [Help]

APPS.WF_DIAGNOSTICS_APPS dependencies on FND_LOG

Line 295: AND FND_LOG.G_CURRENT_RUNTIME_LEVEL <= FND_LOG.LEVEL_UNEXPECTED) then

291: fnd_profile.get('AFLOG_ENABLED',logging_enabled);
292: fnd_profile.get('AFLOG_MODULE',module);
293: if(logging_enabled = 'Y'
294: AND instrb(module,'ecx') > 0
295: AND FND_LOG.G_CURRENT_RUNTIME_LEVEL <= FND_LOG.LEVEL_UNEXPECTED) then
296: ecx_logging_enabled := true;
297: end if;
298:
299: dbms_lob.createtemporary(p_xmldoc,true,dbms_lob.session);

Line 314: outbound_xmlfile := 'FND-Logging AFLOG MODULE Name for XML File :'

310: outbound_ret_code := p_ret_code;
311: outbound_errbuf := p_errbuf;
312: -- outbound_logfile := p_logfile;
313: IF (ecx_logging_enabled) THEN
314: outbound_xmlfile := 'FND-Logging AFLOG MODULE Name for XML File :'
315: ||ecx_debug.g_sqlprefix||'out.'||ecx_utils.g_run_id||'.xml';
316: outbound_logfile := 'FND-Logging AFLOG MODULE Name for Log File :'
317: ||ecx_debug.g_sqlprefix||'out.'||ecx_utils.g_run_id||'.log';
318: ElSE

Line 316: outbound_logfile := 'FND-Logging AFLOG MODULE Name for Log File :'

312: -- outbound_logfile := p_logfile;
313: IF (ecx_logging_enabled) THEN
314: outbound_xmlfile := 'FND-Logging AFLOG MODULE Name for XML File :'
315: ||ecx_debug.g_sqlprefix||'out.'||ecx_utils.g_run_id||'.xml';
316: outbound_logfile := 'FND-Logging AFLOG MODULE Name for Log File :'
317: ||ecx_debug.g_sqlprefix||'out.'||ecx_utils.g_run_id||'.log';
318: ElSE
319: outbound_xmlfile := 'No xml file name as logging was not enabled for module: '
320: ||ecx_debug.g_sqlprefix||'%';

Line 359: inbound_logfile := 'FND-Logging AFLOG MODULE Name for Log File :'

355: inbound_ret_code := i_ret_code;
356: inbound_errbuf := i_errbuf;
357: -- inbound_logfile := i_logfile;
358: IF (ecx_logging_enabled) THEN
359: inbound_logfile := 'FND-Logging AFLOG MODULE Name for Log File :'
360: ||ecx_debug.g_sqlprefix||'in.'||ecx_utils.g_run_id||'.log';
361: ElSE
362: inbound_logfile := 'No log file name as logging was not enabled for module: '
363: ||ecx_debug.g_sqlprefix||'%';