DBA Data[Home] [Help]

APPS.WF_RULE dependencies on WF_ENGINE

Line 239: 'Calling wf_engine.event()');

235:
236: if (wf_log_pkg.level_statement >= fnd_log.g_current_runtime_level) then
237: wf_log_pkg.string(wf_log_pkg.level_statement,
238: 'wf.plsql.WF_RULE.default_rule.event',
239: 'Calling wf_engine.event()');
240: end if;
241:
242: lparamlist := p_event.Parameter_List;
243: wf_event.AddParameterToList('SUB_GUID', p_subscription_guid,lparamlist);

Line 253: --The resource busy exception will be raised by wf_engine.event

249: else
250: ikey := nvl(p_event.Correlation_ID, p_event.Event_Key);
251: end if;
252:
253: --The resource busy exception will be raised by wf_engine.event
254: --and caught in the exception block.
255: wf_engine.event(
256: itemtype => wftype,
257: itemkey => ikey,

Line 255: wf_engine.event(

251: end if;
252:
253: --The resource busy exception will be raised by wf_engine.event
254: --and caught in the exception block.
255: wf_engine.event(
256: itemtype => wftype,
257: itemkey => ikey,
258: process_name => wfname,
259: event_message => p_event);

Line 352: 'Calling wf_engine.event()');

348: if (wftype is not null) then
349: if (wf_log_pkg.level_procedure >= fnd_log.g_current_runtime_level) then
350: wf_log_pkg.string(wf_log_pkg.level_procedure,
351: 'wf.plsql.WF_RULE.workflow_protocol.event',
352: 'Calling wf_engine.event()');
353: end if;
354: --
355: -- Add Parameters to List
356: --

Line 381: wf_engine.event(

377: else
378: ikey := nvl(p_event.getCorrelationID(), p_event.getEventKey());
379: end if;
380:
381: wf_engine.event(
382: itemtype => wftype,
383: itemkey => ikey,
384: process_name => wfname,
385: event_message => p_event);

Line 426: 'Calling wf_engine.event()');

422: if (wftype is not null) then
423: if (wf_log_pkg.level_procedure >= fnd_log.g_current_runtime_level) then
424: wf_log_pkg.string(wf_log_pkg.level_procedure,
425: 'wf.plsql.WF_RULE.error_rule.event',
426: 'Calling wf_engine.event()');
427: end if;
428:
429: p_event.addParameterToList('SUB_GUID', p_subscription_guid);
430:

Line 437: wf_engine.event(

433: else
434: ikey := nvl(p_event.getCorrelationID(), p_event.getEventKey());
435: end if;
436:
437: wf_engine.event(
438: itemtype => wftype,
439: itemkey => ikey,
440: process_name => wfname,
441: event_message => p_event);

Line 758: wf_engine.event2(event_message => p_event);

754:
755: l_result := setParametersIntoParameterList(p_subscription_guid,p_event);
756:
757: --The resource busy exception could be raise here
758: wf_engine.event2(event_message => p_event);
759:
760: -- Route --
761: /** single consumer queues do not need a To Agent **/
762: if (out_guid is not null) then