DBA Data[Home] [Help]

APPS.ECX_OUT_WF_QH dependencies on WF_EVENT

Line 5: PROCEDURE Dequeue(p_agent_guid in RAW, p_event out NOCOPY WF_EVENT_T)

1: PACKAGE BODY ecx_out_wf_qh as
2: -- $Header: ECXOWFQB.pls 115.14 2004/06/01 21:19:23 mtai ship $
3:
4:
5: PROCEDURE Dequeue(p_agent_guid in RAW, p_event out NOCOPY WF_EVENT_T)
6: is
7: x_queue_name varchar2(80);
8: x_agent_name varchar2(30);
9: x_dequeue_options dbms_aq.dequeue_options_t;

Line 47: wf_event_t.initialize(p_event);

43:
44: x_from_agt := wf_agent_t(x_agent_name, x_sys_name);
45: x_to_agt := wf_agent_t(x_agent_name, x_sys_name);
46:
47: wf_event_t.initialize(p_event);
48:
49: x_dequeue_options.wait := dbms_aq.no_wait;
50: x_dequeue_options.navigation := ecx_out_wf_qh.navigation;
51:

Line 121: This procedure traverses through all the parameters in wf_event_t object, constructs the

117: end Dequeue;
118:
119:
120: /**
121: This procedure traverses through all the parameters in wf_event_t object, constructs the
122: system.ecxmsg object and returns these to the caller procedure
123: **/
124: procedure create_ecxmsg(p_event in wf_event_t,
125: x_ecxmsg in out NOCOPY SYSTEM.ecxmsg

Line 124: procedure create_ecxmsg(p_event in wf_event_t,

120: /**
121: This procedure traverses through all the parameters in wf_event_t object, constructs the
122: system.ecxmsg object and returns these to the caller procedure
123: **/
124: procedure create_ecxmsg(p_event in wf_event_t,
125: x_ecxmsg in out NOCOPY SYSTEM.ecxmsg
126: )
127: is
128:

Line 306: PROCEDURE Enqueue(p_event in wf_event_t,

302: raise queue_handler_exit;
303: end enqueue_msg;
304:
305:
306: PROCEDURE Enqueue(p_event in wf_event_t,
307: p_out_agent_override in wf_agent_t )
308: is
309:
310: x_out_agent_name varchar2(30);

Line 365: wf_event.g_msgid := x_msgid;

361: );
362:
363: -- set msgid
364: ecx_out_wf_qh.msgid := x_msgid;
365: wf_event.g_msgid := x_msgid;
366:
367: if (wf_log_pkg.level_statement >= fnd_log.g_current_runtime_level) then
368: wf_log_pkg.string(wf_log_pkg.level_statement, l_module,
369: 'Enqueue Message Successfully');