1.

What Are The Various Ways To Kick-off A Workflow You Can Either Use Wf_engine.start_process Or You Can Attach A Runnable Process Such Ghat It Subscribes To A Workflow Event.when Starting (kicking Off) An Oracle Workflow Process, How Do You Ensure That It Happens In A Background Mode?

Answer»
  •  if initiating the process using start_process, do the below

wf_engine.threshold := -1;
wf_engine.createprocess(l_itemtype
,l_itemkey
,'<YOUR PROCESS NAME>’);
wf_engine.startprocess(l_itemtype, l_itemkey)

wf_engine.threshold := -1;
wf_engine.createprocess(l_itemtype
,l_itemkey
,'<YOUR PROCESS NAME>’);
wf_engine.startprocess(l_itemtype, l_itemkey)



Discussion

No Comment Found