DBA Data[Home] [Help]

APPS.WF_EVENT dependencies on DBMS_AQ

Line 15: navigation binary_integer := dbms_aq.first_message;

11: * @rep:category BUSINESS_ENTITY WF_EVENT
12: * @rep:ihelp FND/@evtapis See the related online help
13: */
14: ------------------------------------------------------------------------------
15: navigation binary_integer := dbms_aq.first_message;
16: ------------------------------------------------------------------------------
17: /*
18: ** exception source indicator - used by dispatch and listen (NONE | WF | RULE)
19: */

Line 212: x_message_properties in out nocopy dbms_aq.message_properties_t);

208: */
209: PROCEDURE Set_Recipient_List(p_event in wf_event_t,
210: p_out_agent_name in varchar2,
211: p_out_system_name in varchar2,
212: x_message_properties in out nocopy dbms_aq.message_properties_t);
213: /*
214: ** newAgent - Construct a wf_agent_t from a guid
215: */
216: /*#

Line 342: p_wait in binary_integer default dbms_aq.no_wait,

338: * @rep:compatibility S
339: * @rep:ihelp FND/@evtapis#a_evlis See the related online help
340: */
341: PROCEDURE listen(p_agent_name in varchar2,
342: p_wait in binary_integer default dbms_aq.no_wait,
343: p_correlation in varchar2 default null,
344: p_deq_condition in varchar2 default null);
345: ---------------------------------------------------------------------------
346: /*

Line 367: p_wait in binary_integer default dbms_aq.no_wait,

363: * @rep:compatibility S
364: * @rep:ihelp FND/@evtapis#a_evlis See the related online help
365: */
366: PROCEDURE listen(p_agent_name in varchar2,
367: p_wait in binary_integer default dbms_aq.no_wait,
368: p_correlation in varchar2 default null,
369: p_deq_condition in varchar2 default null,
370: p_message_count in out nocopy number,
371: p_max_error_count in out nocopy number);

Line 385: p_wait in binary_integer default dbms_aq.no_wait

381: retcode out nocopy varchar2,
382: p_agent_name in varchar2,
383: p_correlation in varchar2 default null,
384: p_deq_condition in varchar2 default null,
385: p_wait in binary_integer default dbms_aq.no_wait
386: );
387: ---------------------------------------------------------------------------
388: /*
389: ** listen_grp - dequeues and dispatches all events currently enqueued

Line 403: p_wait in binary_integer default dbms_aq.no_wait);

399: **
400: **
401: */
402: PROCEDURE listen_grp(p_agent_name in varchar2,
403: p_wait in binary_integer default dbms_aq.no_wait);
404: ---------------------------------------------------------------------------
405: /*
406: ** listen__grp_concurrent - This is a cover of listen_grp() that can be used
407: ** by the Concurrent Manager.

Line 430: p_wait in binary_integer default dbms_aq.no_wait,

426: */
427: PROCEDURE dequeue(p_agent_guid in raw,
428: p_event out nocopy wf_event_t,
429: p_queue_handler in out nocopy varchar2,
430: p_wait in binary_integer default dbms_aq.no_wait,
431: p_correlation in varchar2 default null,
432: p_deq_condition in varchar2 default null);
433: ---------------------------------------------------------------------------
434: /*