DBA Data[Home] [Help]

APPS.WF_EVENT dependencies on WF_EVENT_T

Line 130: p_event in out nocopy wf_event_t,

126: p_sub_guid in raw,
127: p_source_agent_guid in raw,
128: p_phase in number,
129: p_priority in number,
130: p_event in out nocopy wf_event_t,
131: p_on_error in varchar2)
132: return varchar2;
133: ------------------------------------------------------------------------------
134: /*

Line 194: PROCEDURE send(p_event in out nocopy wf_event_t);

190: * @rep:displayname Send Event
191: * @rep:compatibility S
192: * @rep:ihelp FND/@evtapis#a_evsend See the related online help
193: */
194: PROCEDURE send(p_event in out nocopy wf_event_t);
195: ------------------------------------------------------------------------------
196: /*#
197: * Sets the Recipient_List when an event is sent from one agent to another
198: * This method handles both Agent and Agent Group.

Line 209: PROCEDURE Set_Recipient_List(p_event in wf_event_t,

205: * @rep:displayname Send Event
206: * @rep:compatibility S
207: * @rep:ihelp FND/@evtapis#a_evsend See the related online help
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: /*

Line 261: p_event in out nocopy wf_event_t);

257: * @rep:ihelp FND/@evtapis#a_evnewagt See the related online help
258: */
259: PROCEDURE dispatch(p_source_type in varchar2,
260: p_source_agent_guid in raw,
261: p_event in out nocopy wf_event_t);
262: ------------------------------------------------------------------------------
263: /*
264: ** raise - raise a local event to the event manager
265: ** -- Below Moved to Dispatcher --

Line 279: * Raises a local event to the Event Manager. Creates a WF_EVENT_T structure

275: **
276: ** Note: If the event is not defined, no error will be raised.
277: */
278: /*#
279: * Raises a local event to the Event Manager. Creates a WF_EVENT_T structure
280: * for this event instance and sets the specified event name, event key,
281: * event data, parameter list, and send date into the structure. The event data
282: * can be passed to the Event Manager within the call to the Raise() API, or
283: * the Event Manager can obtain the event data itself by calling the Generate

Line 308: ** dequeue events into the WF_EVENT_T type structure. Then

304: ** listen - dequeues and dispatches all events currently enqueued
305: ** for this agent.
306: **
307: ** Uses the appropriate QUEUE_HANDLER interface package to
308: ** dequeue events into the WF_EVENT_T type structure. Then
309: ** calls DISPATCH with the appropriate source type
310: ** (usually 'EXTERNAL' but 'ERROR' if agent name is 'WF_ERROR')
311: **
312: ** Exits after all the events have been dequeued.

Line 394: ** dequeue events into the WF_EVENT_T type structure. Then

390: ** for this agent.
391: **
392: ** Supports message grouping to dequeue by transactions.
393: ** Uses the appropriate QUEUE_HANDLER interface package to
394: ** dequeue events into the WF_EVENT_T type structure. Then
395: ** calls DISPATCH with the appropriate source type
396: ** (usually 'EXTERNAL' but 'ERROR' if agent name is 'WF_ERROR')
397: **
398: ** Exits after all the events have been dequeued.

Line 419: ** dequeue events into the WF_EVENT_T type structure.

415: /*
416: ** dequeue - generic dequeue.
417: **
418: ** Determines the appropriate QUEUE_HANDLER interface package to
419: ** dequeue events into the WF_EVENT_T type structure.
420: */
421: /* @rep:scope public
422: * @rep:lifecycle active
423: * @rep:displayname Enqueue Event Message

Line 428: p_event out nocopy wf_event_t,

424: * @rep:compatibility S
425: * @rep:ihelp FND/@evtapis#a_evenq See the related online help
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);

Line 438: ** enqueue events from the WF_EVENT_T type structure.

434: /*
435: ** enqueue - generic enqueue.
436: **
437: ** Determines the appropriate QUEUE_HANDLER interface package to
438: ** enqueue events from the WF_EVENT_T type structure.
439: **
440: ** If the p_out_agent_override is specified, enqueues to that
441: ** agent instead of the one specified in p_event.From_agent.
442: */

Line 458: PROCEDURE enqueue(p_event in wf_event_t,

454: * @rep:displayname Enqueue Event Message
455: * @rep:compatibility S
456: * @rep:ihelp FND/@evtapis#a_evenq See the related online help
457: */
458: PROCEDURE enqueue(p_event in wf_event_t,
459: p_out_agent_override in wf_agent_t default null);
460: ---------------------------------------------------------------------------
461: /*
462: ** setErrorInfo - retrieve the error information from the

Line 463: ** stack and set into the wf_event_t.

459: p_out_agent_override in wf_agent_t default null);
460: ---------------------------------------------------------------------------
461: /*
462: ** setErrorInfo - retrieve the error information from the
463: ** stack and set into the wf_event_t.
464: **
465: ** p_type should be WARNING or ERROR
466: */
467: /*#

Line 480: PROCEDURE setErrorInfo(p_event in out nocopy wf_event_t,

476: * @rep:displayname Set Error Information
477: * @rep:compatibility S
478: * @rep:ihelp FND/@evtapis#a_evseinf See the related online help
479: */
480: PROCEDURE setErrorInfo(p_event in out nocopy wf_event_t,
481: p_type in varchar2);
482: ---------------------------------------------------------------------------
483: /*
484: ** AddParameterToList - adds name and value to varray size 100

Line 607: p_event in out nocopy wf_event_t);

603: /*
604: ** DeferEvent - Saves Event to Deferred Queue
605: */
606: PROCEDURE DeferEvent(p_source_type in varchar2,
607: p_event in out nocopy wf_event_t);
608: ---------------------------------------------------------------------------
609: /*
610: ** DeferEventToJava - Saves Event to WF_JAVA_DEFERRED Queue
611: */

Line 613: p_event in out nocopy wf_event_t);

609: /*
610: ** DeferEventToJava - Saves Event to WF_JAVA_DEFERRED Queue
611: */
612: PROCEDURE DeferEventToJava(p_source_type in varchar2,
613: p_event in out nocopy wf_event_t);
614: ---------------------------------------------------------------------------
615: /*
616: ** GetDeferEventCtx - Determines the Source Type and Start Phase
617: ** of deferred events

Line 622: p_event in wf_event_t);

618: */
619: PROCEDURE GetDeferEventCtx (p_source_type in out nocopy varchar2,
620: p_agent_name in varchar2,
621: p_system_name in varchar2,
622: p_event in wf_event_t);
623: ---------------------------------------------------------------------------
624: /*
625: ** SetAccountName - Populates Global Variable with account name
626: ** the session is logged in under