DBA Data[Home] [Help]

APPS.WF_STANDARD dependencies on WF_EVENT_SUBSCRIPTIONS

Line 2881: from wf_event_subscriptions

2877: --
2878: if l_subscription is not null then
2879: -- If a subscription found, look at its source
2880: select source_type into l_source
2881: from wf_event_subscriptions
2882: where guid = l_subscription;
2883:
2884: if l_source = 'ERROR' then
2885: l_source := 'LOCAL';

Line 3289: from wf_event_subscriptions

3285: l_toagent varchar2(100);
3286:
3287: cursor c_agents is
3288: select out_agent_guid, to_agent_guid
3289: from wf_event_subscriptions
3290: where guid = l_subguid;
3291:
3292: begin
3293:

Line 3466: FROM wf_event_subscriptions

3462: if (l_subscription is not null) then
3463:
3464: SELECT parameters, java_rule_func
3465: INTO l_params, l_rule_func
3466: FROM wf_event_subscriptions
3467: WHERE guid = l_subscription;
3468:
3469: l_sub_param_list := wf_event.GetParamListFromString(l_params);
3470:

Line 3651: FROM wf_event_subscriptions

3647: l_subscription := l_event_t.GetErrorSubscription();
3648:
3649: SELECT action_code
3650: INTO l_action_code
3651: FROM wf_event_subscriptions
3652: WHERE guid = l_subscription;
3653:
3654: if (l_action_code is not null) then
3655: resultout := wf_engine.eng_completed||':'||l_action_code;