DBA Data[Home] [Help]

APPS.ECX_INBOUND_TRIG dependencies on ECX_ERRORLOG

Line 902: ecx_errorlog.update_log_document

898: else
899: if(l_statementEnabled) then
900: ecx_debug.log(l_statement,'Update doclogs for Msg Id : ' , m_msgid,i_method_name);
901: end if;
902: ecx_errorlog.update_log_document
903: (
904: m_msgid,
905: null,
906: 'Inbound processing complete.',

Line 1006: ecx_errorlog.log_document (

1002: ecx_debug.log(l_statement,'Username ',v_message.username,i_method_name);
1003: ecx_debug.log(l_statement,'Password ',v_message.password,i_method_name);
1004: end if;
1005: begin
1006: ecx_errorlog.log_document (
1007: l_retcode,
1008: l_retmsg,
1009: i_msgid,
1010: v_message.message_type,

Line 1255: ecx_errorlog.outbound_log(i_event);

1251: if(l_statementEnabled) then
1252: ecx_debug.log(l_statement,'Calling WF_EVENT.Send for Enqueue',i_method_name);
1253: end if;
1254: wf_event.send(i_event);
1255: ecx_errorlog.outbound_log(i_event);
1256:
1257: i_out_msgid := ecx_out_wf_qh.msgid;
1258:
1259: -- check the retcode and retmsg. This should be populated here only

Line 1507: ecx_errorlog.log_document (

1503: );
1504:
1505: --Keep a log of the Outgoing Messages
1506: begin
1507: ecx_errorlog.log_document (
1508: l_retcode,
1509: l_retmsg,
1510: i_msgid,
1511: v_message.message_type,

Line 2452: /* ecx_errorlog.inbound_trigger

2448: /* open c_ecx_trigger_id;
2449: fetch c_ecx_trigger_id into i_trigger_id;
2450: close c_ecx_trigger_id;*/
2451: ecx_debug.setErrorInfo(10,10,'ECX_REPROCESSING_MESSAGE');
2452: /* ecx_errorlog.inbound_trigger
2453: (
2454: i_trigger_id,
2455: i_msgid,
2456: null,

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

2472: if(i_process_id is null) -- means TP setup wrong. Message never got into transaction queue.
2473: then
2474: return;
2475: end if;
2476: ecx_errorlog.inbound_engine(i_process_id,ecx_utils.i_ret_code,
2477: ecx_utils.i_errbuf);
2478: ecx_utils.g_logfile := null;
2479: exception
2480: when others then

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

2477: ecx_utils.i_errbuf);
2478: ecx_utils.g_logfile := null;
2479: exception
2480: when others then
2481: ecx_errorlog.inbound_engine(i_process_id,ecx_utils.i_ret_code, ecx_utils.i_errbuf,ecx_utils.i_errparams);
2482: i_retcode := ecx_utils.i_ret_code;
2483: i_errbuf := ecx_utils.i_errbuf;
2484: ecx_utils.g_logfile := null;
2485: end;