DBA Data[Home] [Help]

APPS.WF_QUEUE dependencies on WF_ENGINE_RAC

Line 1020: if l_inst_id is not null and WF_ENGINE_RAC.Process_Is_RAC_Enabled(itemtype, l_process) then

1016: select ROOT_ACTIVITY into l_process
1017: from WF_ITEMS
1018: where ITEM_TYPE=itemtype
1019: and ITEM_KEY=itemkey;
1020: if l_inst_id is not null and WF_ENGINE_RAC.Process_Is_RAC_Enabled(itemtype, l_process) then
1021: message_properties.correlation := message_properties.correlation||':'||l_inst_id;
1022: end if;
1023: end if;
1024: -- check the correlation is always set to something

Line 1200: if l_inst_id is not null and WF_ENGINE_RAC.Item_Is_RAC_Enabled(itemtype) then

1196: -- or it is standalone with null item type, we cannot support the
1197: -- old correlation id format; otherwise, it will pick up everything.
1198: else
1199: l_inst_id := sys_context('WF_RAC_CTX','INST_ID');
1200: if l_inst_id is not null and WF_ENGINE_RAC.Item_Is_RAC_Enabled(itemtype) then
1201: -- This means the correlation of the message would like APPSOEOL:4
1202: lcorrelation := wf_queue.account_name||itemtype||':'||l_inst_id;
1203: else
1204: lcorrelation := wf_queue.account_name||nvl(itemtype,'%');