DBA Data[Home] [Help]

APPS.ECX_INBOUND_LISTENER_QH dependencies on WF_AGENT_T

Line 53: x_from_agt wf_agent_t := wf_agent_t(null,null);

49: pragma exception_init (no_messages, -25228);
50: x_ecxmsg system.ecxmsg;
51: x_sys_guid RAW(16);
52: x_sys_name VARCHAR2(30);
53: x_from_agt wf_agent_t := wf_agent_t(null,null);
54: x_to_agt wf_agent_t := wf_agent_t(null,null);
55: i_message_counter pls_integer;
56: x_trigger_id number;
57: l_retcode pls_integer := 0;

Line 54: x_to_agt wf_agent_t := wf_agent_t(null,null);

50: x_ecxmsg system.ecxmsg;
51: x_sys_guid RAW(16);
52: x_sys_name VARCHAR2(30);
53: x_from_agt wf_agent_t := wf_agent_t(null,null);
54: x_to_agt wf_agent_t := wf_agent_t(null,null);
55: i_message_counter pls_integer;
56: x_trigger_id number;
57: l_retcode pls_integer := 0;
58: l_retmsg varchar2(200) := null;

Line 83: x_from_agt := wf_agent_t(x_agent_name, x_sys_name);

79: into x_sys_name
80: from wf_systems
81: where guid = x_sys_guid;
82:
83: x_from_agt := wf_agent_t(x_agent_name, x_sys_name);
84: x_to_agt := wf_agent_t(x_agent_name, x_sys_name);
85:
86: if (wf_log_pkg.level_statement >= fnd_log.g_current_runtime_level) then
87: wf_log_pkg.string(wf_log_pkg.level_statement, l_module,'p_agent_guid' ||hextoraw(p_agent_guid));

Line 84: x_to_agt := wf_agent_t(x_agent_name, x_sys_name);

80: from wf_systems
81: where guid = x_sys_guid;
82:
83: x_from_agt := wf_agent_t(x_agent_name, x_sys_name);
84: x_to_agt := wf_agent_t(x_agent_name, x_sys_name);
85:
86: if (wf_log_pkg.level_statement >= fnd_log.g_current_runtime_level) then
87: wf_log_pkg.string(wf_log_pkg.level_statement, l_module,'p_agent_guid' ||hextoraw(p_agent_guid));
88: wf_log_pkg.string(wf_log_pkg.level_statement, l_module,'System: ' || x_sys_name);

Line 133: x_from_agt := wf_agent_t(substr(x_ecxmsg.party_site_id,1,30),

129: wf_log_pkg.string(wf_log_pkg.level_statement, l_module,
130: 'Final Destination: '|| x_ecxmsg.attribute3);
131: end if;
132:
133: x_from_agt := wf_agent_t(substr(x_ecxmsg.party_site_id,1,30),
134: 'EXTERNAL_PARTY_SITEID');
135:
136: wf_event_t.initialize(p_event);
137:

Line 229: p_out_agent_override in wf_agent_t )

225: end Dequeue;
226:
227:
228: PROCEDURE Enqueue(p_event in wf_event_t,
229: p_out_agent_override in wf_agent_t )
230: is
231:
232: x_out_queue varchar2(80);
233: x_enqueue_options dbms_aq.enqueue_options_t;