DBA Data[Home] [Help]

APPS.WF_XML dependencies on WF_EVENT_T

Line 280: * @paraminfo {@rep:innertype WF_EVENT_T} {@rep:required}

276: *
277: * @param p_subscription_guid The globally unique identifier of the subscription that calls this rule function
278: * @paraminfo {@rep:required}
279: * @param p_event The event message that triggers the subscription
280: * @paraminfo {@rep:innertype WF_EVENT_T} {@rep:required}
281: * @return If succeed, returns 'SUCCESS' otherwise 'ERROR'
282: *
283: * @rep:displayname Legacy Send Notification Rule
284: * @rep:scope public

Line 289: p_event in out NOCOPY WF_EVENT_T) return varchar2;

285: * @rep:lifecycle obsolete
286: * @rep:compatibility N
287: */
288: function SendNotification (p_subscription_guid in raw,
289: p_event in out NOCOPY WF_EVENT_T) return varchar2;
290:
291: -- receive
292: -- Handle the notification receive events
293: -- This will handle the processing of the inbound responses

Line 296: -- p_event - The WF_EVENT_T containing the event information

292: -- Handle the notification receive events
293: -- This will handle the processing of the inbound responses
294: -- IN
295: -- p_subscription_guid - The RAW GUID of the event subscription
296: -- p_event - The WF_EVENT_T containing the event information
297: function receive (p_subscription_guid in raw,
298: p_event in out NOCOPY WF_EVENT_T) return varchar2;
299:
300: -- GetResponseDetails

Line 298: p_event in out NOCOPY WF_EVENT_T) return varchar2;

294: -- IN
295: -- p_subscription_guid - The RAW GUID of the event subscription
296: -- p_event - The WF_EVENT_T containing the event information
297: function receive (p_subscription_guid in raw,
298: p_event in out NOCOPY WF_EVENT_T) return varchar2;
299:
300: -- GetResponseDetails
301: -- Gets the response details from the incoming XML Notifiction
302: -- structure.

Line 327: * @paraminfo {@rep:innertype WF_EVENT_T} {@rep:required}

323: *
324: * @param p_subscription_guid The globally unique identifier of the subscription that calls this rule function
325: * @paraminfo {@rep:required}
326: * @param p_event The event message that triggers the subscription
327: * @paraminfo {@rep:innertype WF_EVENT_T} {@rep:required}
328: * @return If succeed, returns 'SUCCESS' otherwise 'ERROR'
329: *
330: * @rep:displayname Send Summary Notification Rule
331: * @rep:scope public

Line 336: p_event in out NOCOPY WF_EVENT_T) return varchar2;

332: * @rep:lifecycle active
333: * @rep:compatibility S
334: */
335: function SummaryRule (p_subscription_guid in raw,
336: p_event in out NOCOPY WF_EVENT_T) return varchar2;
337:
338: /*
339: ** error_rule - dispatch functionality for error subscription processing
340: **

Line 356: * @paraminfo {@rep:innertype WF_EVENT_T} {@rep:required}

352: *
353: * @param p_subscription_guid The globally unique identifier of the subscription that calls this rule function
354: * @paraminfo {@rep:required}
355: * @param p_event The event message that triggers the subscription
356: * @paraminfo {@rep:innertype WF_EVENT_T} {@rep:required}
357: * @return If succeed, returns 'SUCCESS' otherwise 'ERROR'
358: *
359: * @rep:displayname Send Notification Error Rule
360: * @rep:scope public

Line 365: p_event in out nocopy wf_event_t) return varchar2;

361: * @rep:lifecycle active
362: * @rep:compatibility S
363: */
364: FUNCTION error_rule(p_subscription_guid in raw,
365: p_event in out nocopy wf_event_t) return varchar2;
366:
367: -- Gets the LOB content for a PLSQLCLOB
368: -- IN
369: -- pAPI the API to call

Line 486: p_event in out nocopy wf_event_t)

482: -- p_event Event Message
483: -- OUT
484: -- Status as ERROR, SUCCESS, WARNING
485: function Send_Rule(p_subscription_guid in raw,
486: p_event in out nocopy wf_event_t)
487: return varchar2;
488:
489: end WF_XML;