DBA Data[Home] [Help]

APPS.IEX_DEL_SUB_PVT dependencies on WF_ENGINE

Line 825: wf_engine.createprocess (

821: IF (FND_LOG.LEVEL_EVENT >= PG_DEBUG) THEN
822: IEX_DEBUG_PUB.LOGMESSAGE('Start_Workflow: ' || 'Item Type ' || itemtype || ' Item Key ' || itemkey || ' process ' || workflowprocess);
823: END IF;
824:
825: wf_engine.createprocess (
826: itemtype => itemtype,
827: itemkey => itemkey,
828: process => workflowprocess);
829: --DBMS_OUTPUT.PUT_LINE('CREATE PROCESS, itemkey = ' || itemkey);

Line 832: wf_engine.setitemattrnumber(

828: process => workflowprocess);
829: --DBMS_OUTPUT.PUT_LINE('CREATE PROCESS, itemkey = ' || itemkey);
830:
831: -- User Id
832: wf_engine.setitemattrnumber(
833: itemtype => itemtype,
834: itemkey => itemkey,
835: aname => 'OWNER_ID',
836: avalue => p_user_id);

Line 838: wf_engine.setitemattrtext(

834: itemkey => itemkey,
835: aname => 'OWNER_ID',
836: avalue => p_user_id);
837: -- Manager Name
838: wf_engine.setitemattrtext(
839: itemtype => itemtype,
840: itemkey => itemkey,
841: aname => 'OWNER_NAME',
842: avalue => l_user_name);

Line 846: wf_engine.setitemattrnumber(

842: avalue => l_user_name);
843:
844:
845: -- Manager Id
846: wf_engine.setitemattrnumber(
847: itemtype => itemtype,
848: itemkey => itemkey,
849: aname => 'MANAGER_ID',
850: avalue => l_manager_id);

Line 852: wf_engine.setitemattrtext(

848: itemkey => itemkey,
849: aname => 'MANAGER_ID',
850: avalue => l_manager_id);
851: -- Manager Name
852: wf_engine.setitemattrtext(
853: itemtype => itemtype,
854: itemkey => itemkey,
855: aname => 'MANAGER_NAME',
856: avalue => l_manager_name);

Line 863: wf_engine.setitemattrtext(

859: IEX_DEBUG_PUB.LOGMESSAGE('Start_Workflow: ' || 'Stage 6');
860: END IF;
861:
862: -- Passed asset Information from Form
863: wf_engine.setitemattrtext(
864: itemtype => itemtype,
865: itemkey => itemkey,
866: aname => 'ASSET_INFO',
867: avalue => P_asset_info);

Line 870: wf_engine.setitemattrtext(

866: aname => 'ASSET_INFO',
867: avalue => P_asset_info);
868:
869: -- Passed Additional asset Information from Form
870: wf_engine.setitemattrtext(
871: itemtype => itemtype,
872: itemkey => itemkey,
873: aname => 'ASSET_ADDL_INFO',
874: avalue => p_asset_addl_info);

Line 876: wf_engine.startprocess(

872: itemkey => itemkey,
873: aname => 'ASSET_ADDL_INFO',
874: avalue => p_asset_addl_info);
875:
876: wf_engine.startprocess(
877: itemtype => itemtype,
878: itemkey => itemkey);
879: --DBMS_OUTPUT.PUT_LINE('START PROCESS');
880: --DBMS_OUTPUT.PUT_LINE('ITEMKEY '||itemkey);

Line 882: wf_engine.ItemStatus( itemtype => ItemType,

878: itemkey => itemkey);
879: --DBMS_OUTPUT.PUT_LINE('START PROCESS');
880: --DBMS_OUTPUT.PUT_LINE('ITEMKEY '||itemkey);
881:
882: wf_engine.ItemStatus( itemtype => ItemType,
883: itemkey => ItemKey,
884: status => l_return_status,
885: result => l_result);
886: