DBA Data[Home] [Help]

APPS.ECX_ERRORLOG dependencies on ECX_OUTBOUND_LOGS

Line 39: update ecx_outbound_logs

35: open c_ecx_errorno;
36: fetch c_ecx_errorno into i_error_no;
37: close c_ecx_errorno;
38: end if;
39: update ecx_outbound_logs
40: set status=i_status,
41: out_msgid = i_outmsgid,
42: error_id = i_error_no,
43: logfile = ecx_utils.g_logfile,

Line 1011: insert into ecx_outbound_logs

1007: else
1008: l_document_number := i_document_number;
1009: end if;
1010: begin
1011: insert into ecx_outbound_logs
1012: (
1013: trigger_id,
1014: transaction_type,
1015: transaction_subtype,

Line 1039: update ecx_outbound_logs

1035: sysdate
1036: );
1037: exception
1038: when dup_val_on_index then
1039: update ecx_outbound_logs
1040: set error_id = i_error_no,
1041: status = i_status,
1042: time_stamp = sysdate
1043: where trigger_id = i_trigger_id;