DBA Data[Home] [Help]

APPS.CUG_LAUNCH_WORKFLOW_PVT dependencies on WF_ENGINE

Line 118: wf_engine.CreateProcess (Itemtype => 'SERVEREQ',

114: -- Create and launch the Workflow process if the status of the SR is OPEN
115: IF (p_source = 'FORM') THEN
116: -- AND (l_servereq_csr_rec.autolaunch_workflow_flag = 'Y') THEN
117:
118: wf_engine.CreateProcess (Itemtype => 'SERVEREQ',
119: Itemkey => l_itemkey,
120: process => l_servereq_csr_rec.workflow);
121:
122: wf_engine.startprocess (itemtype => 'SERVEREQ',

Line 122: wf_engine.startprocess (itemtype => 'SERVEREQ',

118: wf_engine.CreateProcess (Itemtype => 'SERVEREQ',
119: Itemkey => l_itemkey,
120: process => l_servereq_csr_rec.workflow);
121:
122: wf_engine.startprocess (itemtype => 'SERVEREQ',
123: itemkey => l_itemkey);
124:
125: -- Launch the workflow to get customer approval if the package is being called from workflow
126: ELSIF (p_source IS NULL) THEN

Line 128: wf_engine.CreateProcess (Itemtype => 'SERVEREQ',

124:
125: -- Launch the workflow to get customer approval if the package is being called from workflow
126: ELSIF (p_source IS NULL) THEN
127:
128: wf_engine.CreateProcess (Itemtype => 'SERVEREQ',
129: Itemkey => l_itemkey,
130: process => 'CUG_GENERIC_WORKFLOW');
131:
132: wf_engine.startprocess (itemtype => 'SERVEREQ',

Line 132: wf_engine.startprocess (itemtype => 'SERVEREQ',

128: wf_engine.CreateProcess (Itemtype => 'SERVEREQ',
129: Itemkey => l_itemkey,
130: process => 'CUG_GENERIC_WORKFLOW');
131:
132: wf_engine.startprocess (itemtype => 'SERVEREQ',
133: itemkey => l_itemkey);
134:
135: END IF;
136: