DBA Data[Home] [Help]

APPS.XDP_INTERFACES dependencies on WF_ENGINE

Line 665: wf_engine.abortProcess('XDPOMINT', l_intf_flow_key.line_number);

661: -- For each interface workflow process generated for this order
662: FOR l_intf_flow_key IN lc_intf_flow_keys (p_sdp_order_id)
663: LOOP
664: BEGIN --For the exceptions from the WF API call.
665: wf_engine.abortProcess('XDPOMINT', l_intf_flow_key.line_number);
666: EXCEPTION
667: WHEN e_no_such_process THEN
668: NULL; -- Ignore. The SFM-OM interface process may not have been created for some lines.
669: WHEN OTHERS THEN

Line 1173: wf_engine.abortProcess(l_main_wf_item_type, l_main_wf_item_key);

1169: WHERE order_id = p_sdp_order_id;
1170:
1171: IF (l_main_wf_item_type IS NOT NULL AND l_main_wf_item_key IS NOT NULL) THEN
1172: BEGIN --For the exceptions from the WF API call.
1173: wf_engine.abortProcess(l_main_wf_item_type, l_main_wf_item_key);
1174: EXCEPTION
1175: WHEN e_no_such_process THEN
1176: NULL; -- Ignore. The process does not exist.
1177: WHEN OTHERS THEN

Line 2146: wf_engine.abortProcess(

2142: FOR lv_wf_rec IN lc_wf_process(lv_type,lv_key) LOOP
2143: IF lv_wf_rec.is_active_flag = 'Y' AND
2144: lv_wf_rec.is_completed_flag = 'N' THEN
2145: begin
2146: wf_engine.abortProcess(
2147: itemtype => lv_wf_rec.item_type,
2148: itemkey => lv_wf_rec.item_key);
2149: commit;
2150: exception