InterviewSolution
| 1. |
When Starting (kicking Off) An Oracle Workflow Process, How Do You Ensure That It Happens In A Background Mode? |
|
Answer» a) if initiating the process using start_process, do the below wf_engine.threshold := -1; wf_engine.createprocess(l_itemtype,l_itemkey,'’); wf_engine.startprocess(l_itemtype, l_itemkey) b) When initiating the WORKFLOW process through an EVENT SUBSCRIPTION, set the Execution CONDITION Phase to be equal to or above 100 for it to be EXECUTED by background process. a) if initiating the process using start_process, do the below wf_engine.threshold := -1; wf_engine.createprocess(l_itemtype,l_itemkey,'’); wf_engine.startprocess(l_itemtype, l_itemkey) b) When initiating the workflow process through an event subscription, set the Execution Condition Phase to be equal to or above 100 for it to be executed by background process. |
|