DBA Data[Home] [Help]

APPS.FLM_EKB_BUSINESS_EVENT_PKG dependencies on WF_ENGINE

Line 427: wf_engine.createProcess ( ItemType => l_ItemType,

423:
424: l_itemkey := to_char (p_exception_id)|| '-' || l_seq;
425:
426:
427: wf_engine.createProcess ( ItemType => l_ItemType,
428: ItemKey => l_ItemKey,
429: Process => 'WIP_EXCEPTION_REPORT');
430:
431: wf_engine.SetItemAttrNumber ( itemtype => l_itemtype,

Line 431: wf_engine.SetItemAttrNumber ( itemtype => l_itemtype,

427: wf_engine.createProcess ( ItemType => l_ItemType,
428: ItemKey => l_ItemKey,
429: Process => 'WIP_EXCEPTION_REPORT');
430:
431: wf_engine.SetItemAttrNumber ( itemtype => l_itemtype,
432: itemkey => l_itemkey,
433: aname => 'EXCEPTION_ID',
434: avalue => p_exception_id);
435:

Line 436: wf_engine.SetItemAttrText ( itemtype => l_itemtype,

432: itemkey => l_itemkey,
433: aname => 'EXCEPTION_ID',
434: avalue => p_exception_id);
435:
436: wf_engine.SetItemAttrText ( itemtype => l_itemtype,
437: itemkey => l_itemkey,
438: aname => 'TO_RESPONSIBILITY',
439: avalue => 'FND_RESP|WIP|WIP_WS_SUPERVISOR|STANDARD');
440:

Line 441: wf_engine.SetItemAttrText ( itemtype => l_itemtype,

437: itemkey => l_itemkey,
438: aname => 'TO_RESPONSIBILITY',
439: avalue => 'FND_RESP|WIP|WIP_WS_SUPERVISOR|STANDARD');
440:
441: wf_engine.SetItemAttrText ( itemtype => l_itemtype,
442: itemkey => l_itemkey,
443: aname => 'FROM_RESPONSIBILITY',
444: avalue => 'FND_RESP|WIP|WIP_WS_OPERATOR|STANDARD');
445:

Line 446: wf_engine.SetItemAttrText ( itemtype => l_itemtype,

442: itemkey => l_itemkey,
443: aname => 'FROM_RESPONSIBILITY',
444: avalue => 'FND_RESP|WIP|WIP_WS_OPERATOR|STANDARD');
445:
446: wf_engine.SetItemAttrText ( itemtype => l_itemtype,
447: itemkey => l_itemkey,
448: aname => 'JOB_NAME',
449: avalue => l_job_name);
450:

Line 451: wf_engine.SetItemAttrText ( itemtype => l_itemtype,

447: itemkey => l_itemkey,
448: aname => 'JOB_NAME',
449: avalue => l_job_name);
450:
451: wf_engine.SetItemAttrText ( itemtype => l_itemtype,
452: itemkey => l_itemkey,
453: aname => 'OP_SEQ_NUM',
454: avalue => l_op_seq_num);
455:

Line 456: wf_engine.SetItemAttrText ( itemtype => l_itemtype,

452: itemkey => l_itemkey,
453: aname => 'OP_SEQ_NUM',
454: avalue => l_op_seq_num);
455:
456: wf_engine.SetItemAttrText ( itemtype => l_itemtype,
457: itemkey => l_itemkey,
458: aname => 'RESOURCE_NAME',
459: avalue => l_res_name);
460:

Line 461: wf_engine.SetItemAttrText ( itemtype => l_itemtype,

457: itemkey => l_itemkey,
458: aname => 'RESOURCE_NAME',
459: avalue => l_res_name);
460:
461: wf_engine.SetItemAttrText ( itemtype => l_itemtype,
462: itemkey => l_itemkey,
463: aname => 'COMPONENT_NAME',
464: avalue => l_comp_name);
465:

Line 466: wf_engine.StartProcess ( ItemType => l_ItemType,

462: itemkey => l_itemkey,
463: aname => 'COMPONENT_NAME',
464: avalue => l_comp_name);
465:
466: wf_engine.StartProcess ( ItemType => l_ItemType,
467: ItemKey => l_ItemKey );
468:
469:
470: EXCEPTION