DBA Data[Home] [Help]

APPS.WF_EVENT_OJMSTEXT_QH dependencies on WF_CORE

Line 566: wf_core.context('WF_EVENT_OJMSTEXT_QH', 'serialize',

562:
563: set_text(p_jms_text_message, p_event.getEventData());
564:
565: exception when others then
566: wf_core.context('WF_EVENT_OJMSTEXT_QH', 'serialize',
567: 'SQL error is ' || substr(sqlerrm, 1, 200));
568: raise;
569: end serialize;
570:

Line 939: wf_core.context('WF_EVENT_OJMSTEXT_QH', 'enqueue', l_out_queue_name,

935: end if;
936:
937: exception
938: when others then
939: wf_core.context('WF_EVENT_OJMSTEXT_QH', 'enqueue', l_out_queue_name,
940: 'SQL error is ' || substr(sqlerrm, 1, 200));
941: raise;
942: end enqueue;
943:

Line 1012: l_corrId_list := WF_CORE.getDedicatedComponentsCorrIds(l_agent_name, wf_event.account_name);

1008: end if;
1009:
1010: l_dequeue_options.correlation := null;
1011: -- Get the dedicated components correlation Id list
1012: l_corrId_list := WF_CORE.getDedicatedComponentsCorrIds(l_agent_name, wf_event.account_name);
1013:
1014: if (wf_log_pkg.level_procedure >= fnd_log.g_current_runtime_level) then
1015: wf_log_pkg.string(wf_log_pkg.level_statement,
1016: 'wf.plsql.WF_EVENT_QH.dequeue.corr',

Line 1022: l_dequeue_options.deq_condition := 'WF_CORE.matchCorrId(corrid, '''||

1018: end if;
1019:
1020: if(l_corrId_list is not null) then
1021: -- Set the dequeue condition if the dedicated components correlation Id list is not null
1022: l_dequeue_options.deq_condition := 'WF_CORE.matchCorrId(corrid, '''||
1023: l_corrId_list ||''') = 1';
1024: end if;
1025:
1026: end if;

Line 1101: wf_core.context('WF_EVENT_OJMSTEXT_QH', 'Dequeue', l_queue_name,

1097: end if;
1098:
1099: exception
1100: when others then
1101: wf_core.context('WF_EVENT_OJMSTEXT_QH', 'Dequeue', l_queue_name,
1102: 'SQL error is ' || substr(sqlerrm, 1, 200));
1103: raise;
1104: end dequeue;
1105: