DBA Data[Home] [Help]

APPS.CS_WF_EVENT_PKG dependencies on WF_ENGINE

Line 121: -- is BES enabled, If not we will not call wf_engine.event().

117: IF (sel_workflow_csr%FOUND AND l_sel_workflow_rec.workflow IS NOT NULL) THEN
118:
119:
120: -- Before attempting to raise an event workflow,we check if the workflow process
121: -- is BES enabled, If not we will not call wf_engine.event().
122: -- This is important since calling event() api on a non BES workflow causes
123: -- it to raise an exception, which is handled in this custom rule function's
124: -- exception handler with a return status of 'ERROR'. A return status of ERROR
125: -- causes workflow to rollback any raised event performed, and since this is a

Line 143: -- the wf_engine.event() api.

139: INTO l_wf_activity_name;
140:
141: IF (sel_workflow_act_csr%FOUND) THEN
142: -- Workflow has a receive event as Start activity, so we can call
143: -- the wf_engine.event() api.
144:
145:
146: IF (l_sel_workflow_rec.AUTOLAUNCH_WORKFLOW_FLAG = 'Y') AND
147: (( l_sel_workflow_rec.resource_type = 'RS_EMPLOYEE' AND

Line 195: WF_ENGINE.Event(

191: -- This will raise an exception when the workflow does not have a receive event
192: -- activity,i.e., the workflow is not BES enabled.
193: --BEGIN
194:
195: WF_ENGINE.Event(
196: itemtype => 'SERVEREQ',
197: itemkey => l_item_key,
198: process_name => l_sel_workflow_rec.workflow,
199: event_message => p_event);