DBA Data[Home] [Help]

APPS.WF_BES_CACHE dependencies on WF_EVENT_SUBS_OBJ

Line 332: l_subscription WF_Event_Subs_Obj;

328: and evt.status = 'ENABLED'
329: and evt.licensed_flag = 'Y')
330: order by 5;
331:
332: l_subscription WF_Event_Subs_Obj;
333: l_count number;
334: begin
335:
336: -- Check if subscriptions are already loaded for this source type

Line 347: WF_Event_Subs_Obj.Initialize(l_subscription);

343: end if;
344: return;
345: end if;
346:
347: WF_Event_Subs_Obj.Initialize(l_subscription);
348: l_count := 0;
349:
350: -- Load all LOCAL subscriptions from the Database
351: if (lower(p_event_name) in (g_event_unexpected, g_event_any)) then

Line 534: -- This function returns a table of WF_EVENT_SUBS_OBJ that are the valid

530: raise;
531: end GetEventByName;
532:
533: -- GetSubscriptions
534: -- This function returns a table of WF_EVENT_SUBS_OBJ that are the valid
535: -- subscriptions to the given event.
536: function GetSubscriptions(p_event_name in varchar2,
537: p_source_type in varchar2,
538: p_source_agent in raw)

Line 604: -- This function returns a WF_EVENT_SUBS_OBJ that contains the subscription

600: raise;
601: end GetSubscriptions;
602:
603: -- GetSubscriptionByGUID
604: -- This function returns a WF_EVENT_SUBS_OBJ that contains the subscription
605: -- to the given event and mathing the given subscription GUID.
606: function GetSubscriptionByGUID(p_event_name in varchar2,
607: p_sub_guid in raw)
608: return wf_event_subs_obj

Line 608: return wf_event_subs_obj

604: -- This function returns a WF_EVENT_SUBS_OBJ that contains the subscription
605: -- to the given event and mathing the given subscription GUID.
606: function GetSubscriptionByGUID(p_event_name in varchar2,
607: p_sub_guid in raw)
608: return wf_event_subs_obj
609: is
610: l_event_obj WF_Event_Obj;
611: l_subs_count number;
612: l_subs_loaded boolean;