DBA Data[Home] [Help]

APPS.WF_STANDARD dependencies on WF_EVENT_SUBSCRIPTIONS

Line 2912: from wf_event_subscriptions

2908: --
2909: if l_subscription is not null then
2910: -- If a subscription found, look at its source
2911: select source_type into l_source
2912: from wf_event_subscriptions
2913: where guid = l_subscription;
2914:
2915: if l_source = 'ERROR' then
2916: l_source := 'LOCAL';

Line 3321: from wf_event_subscriptions

3317: l_toagent varchar2(100);
3318:
3319: cursor c_agents is
3320: select out_agent_guid, to_agent_guid
3321: from wf_event_subscriptions
3322: where guid = l_subguid;
3323:
3324: begin
3325:

Line 3498: FROM wf_event_subscriptions

3494: if (l_subscription is not null) then
3495:
3496: SELECT parameters, java_rule_func
3497: INTO l_params, l_rule_func
3498: FROM wf_event_subscriptions
3499: WHERE guid = l_subscription;
3500:
3501: l_sub_param_list := wf_event.GetParamListFromString(l_params);
3502:

Line 3683: FROM wf_event_subscriptions

3679: l_subscription := l_event_t.GetErrorSubscription();
3680:
3681: SELECT action_code
3682: INTO l_action_code
3683: FROM wf_event_subscriptions
3684: WHERE guid = l_subscription;
3685:
3686: if (l_action_code is not null) then
3687: resultout := wf_engine.eng_completed||':'||l_action_code;