DBA Data[Home] [Help]

APPS.WF_EVENT_QH dependencies on WF_CORE

Line 54: l_corrId_list := WF_CORE.getDedicatedComponentsCorrIds(x_agent_name, wf_event.account_name);

50: wf_event.SetAccountName;
51: end if;
52:
53: -- Get the dedicated components correlation Id list
54: l_corrId_list := WF_CORE.getDedicatedComponentsCorrIds(x_agent_name, wf_event.account_name);
55:
56: if (wf_log_pkg.level_procedure >= fnd_log.g_current_runtime_level) then
57: wf_log_pkg.string(wf_log_pkg.level_statement,
58: 'wf.plsql.WF_EVENT_QH.dequeue.corr',

Line 65: x_dequeue_options.deq_condition := 'WF_CORE.matchCorrId(corrid, '''|| l_corrId_list ||''') = 1';

61:
62: x_dequeue_options.correlation := null;
63: if(l_corrId_list is not null) then
64: -- Set the dequeue condition if the dedicated components correlation Id list is not null
65: x_dequeue_options.deq_condition := 'WF_CORE.matchCorrId(corrid, '''|| l_corrId_list ||''') = 1';
66:
67: end if;
68:
69: end if;

Line 146: Wf_Core.Context('Wf_Event_QH', 'Dequeue', x_queue_name,

142: 'Finished');
143: end if;
144: exception
145: when others then
146: Wf_Core.Context('Wf_Event_QH', 'Dequeue', x_queue_name,
147: 'SQL err is '||substr(sqlerrm,1,200));
148: raise;
149: end dequeue;
150: ------------------------------------------------------------------------------

Line 309: Wf_Core.Context('Wf_Event_QH', 'Enqueue', x_out_queue,

305: end if;
306:
307: exception
308: when others then
309: Wf_Core.Context('Wf_Event_QH', 'Enqueue', x_out_queue,
310: 'SQL err is '||substr(sqlerrm,1,200));
311: raise;
312: end enqueue;
313: ------------------------------------------------------------------------------