DBA Data[Home] [Help]

APPS.WF_DIAGNOSTICS_APPS dependencies on ECX_UTILS

Line 309: -- i_file_name := 'OUT.'||ecx_utils.g_run_id||'.xml';

305: i_errbuf => p_errbuf,
306: i_log_file => p_logfile
307: );
308:
309: -- i_file_name := 'OUT.'||ecx_utils.g_run_id||'.xml';
310: outbound_ret_code := p_ret_code;
311: outbound_errbuf := p_errbuf;
312: -- outbound_logfile := p_logfile;
313: IF (ecx_logging_enabled) THEN

Line 315: ||ecx_debug.g_sqlprefix||'out.'||ecx_utils.g_run_id||'.xml';

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
319: outbound_xmlfile := 'No xml file name as logging was not enabled for module: '

Line 317: ||ecx_debug.g_sqlprefix||'out.'||ecx_utils.g_run_id||'.log';

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||'%';
321: outbound_logfile := 'No log file name as logging was not enabled for module: '

Line 328: /* file := utl_file.fopen(ecx_utils.g_logdir,i_file_name, 'r');

324:
325: -- dbms_lob.freetemporary(p_xmldoc);
326:
327: dbms_lob.createtemporary(i_tmp,true,dbms_lob.session);
328: /* file := utl_file.fopen(ecx_utils.g_logdir,i_file_name, 'r');
329: loop
330: begin
331: utl_file.get_line(file, i_buffer);
332: dbms_lob.writeappend(i_tmp,lengthb(i_buffer),i_buffer);

Line 360: ||ecx_debug.g_sqlprefix||'in.'||ecx_utils.g_run_id||'.log';

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||'%';
364: END IF;