DBA Data[Home] [Help]

APPS.XDP_AQ_UTILITIES dependencies on WF_ENGINE

Line 772: WF_ENGINE.StartProcess(

768: message_properties => lv_MessageProperties,
769: payload => lv_tmp,
770: msgid => lv_MsgID);
771:
772: WF_ENGINE.StartProcess(
773: lv_wf_object.wf_item_type,
774: lv_wf_object.wf_item_key);
775: COMMIT;
776: exception

Line 876: wf_engine.startprocess( lv_wf_object.wf_item_type,

872: END;
873:
874: BEGIN
875:
876: wf_engine.startprocess( lv_wf_object.wf_item_type,
877: lv_wf_object.wf_item_key);
878:
879: COMMIT;
880: EXCEPTION

Line 1065: WF_ENGINE.StartProcess(

1061: last_update_login = FND_GLOBAL.LOGIN_ID,
1062: STATUS_CODE = 'IN PROGRESS'
1063: where workitem_instance_id = lv_wf_object.workitem_instance_id;
1064:
1065: WF_ENGINE.StartProcess(
1066: lv_wf_object.wf_item_type,
1067: lv_wf_object.wf_item_key);
1068: COMMIT;
1069: exception

Line 1181: WF_ENGINE.StartProcess(

1177:
1178: -- Commented out as this evaluation id done in workitem workflow by spusegao on 08/07/01
1179: -- xdp_engine.EvaluateWIParamsOnStart(lv_wf_object.workitem_instance_id);
1180:
1181: WF_ENGINE.StartProcess(
1182: lv_wf_object.wf_item_type,
1183: lv_wf_object.wf_item_key);
1184: COMMIT;
1185: EXCEPTION

Line 1359: WF_ENGINE.StartProcess(

1355: message_properties => lv_MessageProperties,
1356: payload => lv_tmp,
1357: msgid => lv_MsgID);
1358:
1359: WF_ENGINE.StartProcess(
1360: lv_wf_object.wf_item_type,
1361: lv_wf_object.wf_item_key);
1362: COMMIT;
1363: EXCEPTION

Line 1459: WF_ENGINE.StartProcess( lv_wf_object.wf_item_type,

1455:
1456:
1457: BEGIN
1458:
1459: WF_ENGINE.StartProcess( lv_wf_object.wf_item_type,
1460: lv_wf_object.wf_item_key);
1461:
1462: COMMIT;
1463: EXCEPTION

Line 1815: wf_engine.SetItemAttrText(itemtype => p_wf_item_type,

1811:
1812: BEGIN
1813: p_return_code := 0;
1814:
1815: wf_engine.SetItemAttrText(itemtype => p_wf_item_type,
1816: itemkey => p_wf_item_key,
1817: aname => 'CHANNEL_NAME',
1818: avalue => p_pipe_name);
1819:

Line 1822: wf_engine.SetItemAttrDate(itemtype => p_wf_item_type,

1818: avalue => p_pipe_name);
1819:
1820: /*********
1821:
1822: wf_engine.SetItemAttrDate(itemtype => p_wf_item_type,
1823: itemkey => p_wf_item_key,
1824: aname => 'RE_PROCESS_ENQ_TIME',
1825: avalue => p_enq_time);
1826: ********/

Line 1828: wf_engine.CompleteActivity(itemtype => p_wf_item_type,

1824: aname => 'RE_PROCESS_ENQ_TIME',
1825: avalue => p_enq_time);
1826: ********/
1827:
1828: wf_engine.CompleteActivity(itemtype => p_wf_item_type,
1829: itemkey => p_wf_item_key,
1830: activity => p_wf_activity,
1831: result => 'RESUME_PROVISIONING');
1832: COMMIT;

Line 1973: wf_engine.CompleteActivity( itemtype => lv_wf_object.wf_item_type,

1969: raise_application_error(-20530,lv_error_description);
1970: END IF;*/
1971:
1972: BEGIN
1973: wf_engine.CompleteActivity( itemtype => lv_wf_object.wf_item_type,
1974: itemkey => lv_wf_object.wf_item_key,
1975: activity => lv_wf_object.wf_activity_name,
1976: result => 'RESUME_PROVISIONING');
1977: commit;