DBA Data[Home] [Help]

APPS.ECX_INBOUND_TRIG dependencies on ECX_ERRORLOG

Line 916: ecx_errorlog.update_log_document

912: else
913: if(l_statementEnabled) then
914: ecx_debug.log(l_statement,'Update doclogs for Msg Id : ' , m_msgid,i_method_name);
915: end if;
916: ecx_errorlog.update_log_document
917: (
918: m_msgid,
919: null,
920: 'Inbound processing complete.',

Line 1021: ecx_errorlog.log_document (

1017: ecx_debug.log(l_statement,'Username ',v_message.username,i_method_name);
1018: ecx_debug.log(l_statement,'Password ',v_message.password,i_method_name);
1019: end if;
1020: begin
1021: ecx_errorlog.log_document (
1022: l_retcode,
1023: l_retmsg,
1024: i_msgid,
1025: v_message.message_type,

Line 1270: ecx_errorlog.outbound_log(i_event);

1266: if(l_statementEnabled) then
1267: ecx_debug.log(l_statement,'Calling WF_EVENT.Send for Enqueue',i_method_name);
1268: end if;
1269: wf_event.send(i_event);
1270: ecx_errorlog.outbound_log(i_event);
1271:
1272: i_out_msgid := ecx_out_wf_qh.msgid;
1273:
1274: -- check the retcode and retmsg. This should be populated here only

Line 1522: ecx_errorlog.log_document (

1518: );
1519:
1520: --Keep a log of the Outgoing Messages
1521: begin
1522: ecx_errorlog.log_document (
1523: l_retcode,
1524: l_retmsg,
1525: i_msgid,
1526: v_message.message_type,

Line 2490: /* ecx_errorlog.inbound_trigger

2486: /* open c_ecx_trigger_id;
2487: fetch c_ecx_trigger_id into i_trigger_id;
2488: close c_ecx_trigger_id;*/
2489: ecx_debug.setErrorInfo(10,10,'ECX_REPROCESSING_MESSAGE');
2490: /* ecx_errorlog.inbound_trigger
2491: (
2492: i_trigger_id,
2493: i_msgid,
2494: null,

Line 2514: ecx_errorlog.inbound_engine(i_process_id,ecx_utils.i_ret_code,

2510: if(i_process_id is null) -- means TP setup wrong. Message never got into transaction queue.
2511: then
2512: return;
2513: end if;
2514: ecx_errorlog.inbound_engine(i_process_id,ecx_utils.i_ret_code,
2515: ecx_utils.i_errbuf);
2516: ecx_utils.g_logfile := null;
2517: exception
2518: when others then

Line 2521: ecx_errorlog.inbound_engine(i_process_id,ecx_utils.i_ret_code, ecx_utils.i_errbuf,ecx_utils.i_errparams);

2517: exception
2518: when others then
2519:
2520: select process_id into i_process_id from ecx_inbound_logs where msgid=i_msgid; -- fix for bug 7609421 / 8629681
2521: ecx_errorlog.inbound_engine(i_process_id,ecx_utils.i_ret_code, ecx_utils.i_errbuf,ecx_utils.i_errparams);
2522: i_retcode := ecx_utils.i_ret_code;
2523: i_errbuf := ecx_utils.i_errbuf;
2524: ecx_utils.g_logfile := null;
2525: end;