DBA Data[Home] [Help]

APPS.ECX_ERRORLOG dependencies on WF_EVENT_T

Line 671: p_event wf_event_t;

667: o_ret_code OUT NOCOPY pls_integer,
668: o_ret_msg OUT NOCOPY varchar2
669: )
670: is
671: p_event wf_event_t;
672: x_from_agt wf_agent_t := wf_agent_t(null, null);
673: m_transaction_subtype varchar2(250);
674: m_party_id number; /* Bug 2122579 */
675: m_party_site_id number; /* Bug 2122579 */

Line 736: wf_event_t.initialize(p_event);

732: open c_ecx_errorno;
733: fetch c_ecx_errorno into i_error_no;
734: close c_ecx_errorno;
735:
736: wf_event_t.initialize(p_event);
737: x_from_agt := null;
738: p_event.setEventName('oracle.apps.ecx.processing.notification.send');
739: p_event.setEventKey(i_transaction_type|| '-' || m_transaction_subtype || '-' || m_party_site_id || '-' || i_error_no);
740: p_event.setFromAgent(x_from_agt);

Line 792: p_event wf_event_t;

788: from ecx_transactions
789: where transaction_type = i_transaction_type
790: and transaction_subtype = i_transaction_subtype;
791:
792: p_event wf_event_t;
793: x_from_agt wf_agent_t := wf_agent_t(null, null);
794:
795: i_admin_email ecx_tp_headers.company_admin_email%type;
796: i_party_type ecx_tp_headers.party_type%type;

Line 847: wf_event_t.initialize(p_event);

843: open c_ecx_errorno;
844: fetch c_ecx_errorno into i_error_no;
845: close c_ecx_errorno;
846:
847: wf_event_t.initialize(p_event);
848: x_from_agt := null;
849: p_event.setEventName('oracle.apps.ecx.processing.notification.send');
850: p_event.setEventKey(p_transaction_type|| '-' || p_transaction_subtype || '-' || p_party_site_id || '-' || i_error_no);
851: p_event.setFromAgent(x_from_agt);

Line 1433: (p_event in wf_event_t,

1429: end log_resend;
1430:
1431:
1432: procedure get_event_params
1433: (p_event in wf_event_t,
1434: x_message_type out NOCOPY varchar2,
1435: x_message_standard out NOCOPY varchar2,
1436: x_ext_type out NOCOPY varchar2,
1437: x_ext_subtype out NOCOPY varchar2,

Line 1600: p_event in wf_event_t)

1596: end;
1597:
1598:
1599: procedure outbound_log (
1600: p_event in wf_event_t)
1601:
1602: is
1603:
1604: l_out_msgid raw(16);