DBA Data[Home] [Help]

APPS.CUG_INCIDNT_ATTR_VALS_PVT dependencies on WF_ENGINE

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

243:
244:
245: IF l_servereq_csr_rec.workflow is not null THEN
246:
247: wf_engine.CreateProcess (Itemtype => 'SERVEREQ',
248: Itemkey => l_itemkey,
249: process => l_servereq_csr_rec.workflow);
250:
251: wf_engine.startprocess (itemtype => 'SERVEREQ',

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

247: wf_engine.CreateProcess (Itemtype => 'SERVEREQ',
248: Itemkey => l_itemkey,
249: process => l_servereq_csr_rec.workflow);
250:
251: wf_engine.startprocess (itemtype => 'SERVEREQ',
252: itemkey => l_itemkey);
253:
254: END IF;
255: -- Commented the following and added above if condition to take care of the

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

257:
258: /*
259: IF (p_source = 'FORM') THEN
260:
261: wf_engine.CreateProcess (Itemtype => 'SERVEREQ',
262: Itemkey => l_itemkey,
263: process => l_servereq_csr_rec.workflow);
264:
265: wf_engine.startprocess (itemtype => 'SERVEREQ',

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

261: wf_engine.CreateProcess (Itemtype => 'SERVEREQ',
262: Itemkey => l_itemkey,
263: process => l_servereq_csr_rec.workflow);
264:
265: wf_engine.startprocess (itemtype => 'SERVEREQ',
266: itemkey => l_itemkey);
267:
268: ELSE
269:

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

266: itemkey => l_itemkey);
267:
268: ELSE
269:
270: wf_engine.CreateProcess (Itemtype => 'SERVEREQ',
271: Itemkey => l_itemkey,
272: process => 'CUG_GENERIC_WORKFLOW');
273:
274: wf_engine.startprocess (itemtype => 'SERVEREQ',

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

270: wf_engine.CreateProcess (Itemtype => 'SERVEREQ',
271: Itemkey => l_itemkey,
272: process => 'CUG_GENERIC_WORKFLOW');
273:
274: wf_engine.startprocess (itemtype => 'SERVEREQ',
275: itemkey => l_itemkey);
276:
277: END IF;
278: */