DBA Data[Home] [Help]

APPS.WF_BES_CACHE dependencies on WF_EVENT_SUBS_OBJ

Line 328: l_subscription WF_Event_Subs_Obj;

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

Line 343: WF_Event_Subs_Obj.Initialize(l_subscription);

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

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

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

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

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

Line 604: return wf_event_subs_obj

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