DBA Data[Home] [Help]

APPS.PQH_FR_SPEED dependencies on WF_ENGINE

Line 416: WF_ENGINE.CreateProcess(p_itemtype,l_itemkey,p_processName);

412: SELECT PQH_WORKFLOW_ITEM_KEY_S.nextval INTO l_itemKey FROM dual;
413: l_itemKey := 'FRPS'||l_itemKey;
414: --
415: --Kick off the workflow process.
416: WF_ENGINE.CreateProcess(p_itemtype,l_itemkey,p_processName);
417: --
418: IF p_userName is not null then
419: WF_ENGINE.SetItemOwner(p_itemtype,l_itemkey,p_userName);
420: END IF;

Line 419: WF_ENGINE.SetItemOwner(p_itemtype,l_itemkey,p_userName);

415: --Kick off the workflow process.
416: WF_ENGINE.CreateProcess(p_itemtype,l_itemkey,p_processName);
417: --
418: IF p_userName is not null then
419: WF_ENGINE.SetItemOwner(p_itemtype,l_itemkey,p_userName);
420: END IF;
421: --
422: --Set the route by user (appears in from on worklist)
423: WF_ENGINE.SetItemAttrText(itemtype => p_ItemType

Line 423: WF_ENGINE.SetItemAttrText(itemtype => p_ItemType

419: WF_ENGINE.SetItemOwner(p_itemtype,l_itemkey,p_userName);
420: END IF;
421: --
422: --Set the route by user (appears in from on worklist)
423: WF_ENGINE.SetItemAttrText(itemtype => p_ItemType
424: ,itemkey => l_ItemKey
425: ,aname => 'ROUTED_BY_USER'
426: ,avalue => p_UserName);
427: --

Line 429: WF_ENGINE.SetItemAttrText(itemtype => p_ItemType

425: ,aname => 'ROUTED_BY_USER'
426: ,avalue => p_UserName);
427: --
428: --Set the manager user to be notified
429: WF_ENGINE.SetItemAttrText(itemtype => p_ItemType
430: ,itemkey => l_ItemKey
431: ,aname => 'FYI_USER'
432: ,avalue => p_MgrUserName);
433: --

Line 435: WF_ENGINE.SetItemAttrDate(itemtype => p_ItemType

431: ,aname => 'FYI_USER'
432: ,avalue => p_MgrUserName);
433: --
434: --Set the Effective Date
435: WF_ENGINE.SetItemAttrDate(itemtype => p_ItemType
436: ,itemkey => l_ItemKey
437: ,aname => 'EFFECTIVE_DATE'
438: ,avalue => p_EffDt);
439: --

Line 441: WF_ENGINE.SetItemAttrText(itemtype => p_ItemType

437: ,aname => 'EFFECTIVE_DATE'
438: ,avalue => p_EffDt);
439: --
440: --Set the person name
441: WF_ENGINE.SetItemAttrText(itemtype => p_ItemType
442: ,itemkey => l_ItemKey
443: ,aname => 'PSV_PERSON_NAME'
444: ,avalue => p_EmpName);
445: --

Line 446: WF_ENGINE.SetItemAttrText(itemtype => p_ItemType

442: ,itemkey => l_ItemKey
443: ,aname => 'PSV_PERSON_NAME'
444: ,avalue => p_EmpName);
445: --
446: WF_ENGINE.SetItemAttrText(itemtype => p_ItemType
447: ,itemkey => l_ItemKey
448: ,aname => 'PARAMETER1_VALUE'
449: ,avalue => p_EmpNumber);
450: --

Line 451: WF_ENGINE.SetItemAttrText(itemtype => p_ItemType

447: ,itemkey => l_ItemKey
448: ,aname => 'PARAMETER1_VALUE'
449: ,avalue => p_EmpNumber);
450: --
451: WF_ENGINE.SetItemAttrText(itemtype => p_ItemType
452: ,itemkey => l_ItemKey
453: ,aname => 'PARAMETER2_VALUE'
454: ,avalue => p_Corps);
455: --

Line 456: WF_ENGINE.SetItemAttrText(itemtype => p_ItemType

452: ,itemkey => l_ItemKey
453: ,aname => 'PARAMETER2_VALUE'
454: ,avalue => p_Corps);
455: --
456: WF_ENGINE.SetItemAttrText(itemtype => p_ItemType
457: ,itemkey => l_ItemKey
458: ,aname => 'PARAMETER3_VALUE'
459: ,avalue => p_Grade);
460: --

Line 461: WF_ENGINE.SetItemAttrText(itemtype => p_ItemType

457: ,itemkey => l_ItemKey
458: ,aname => 'PARAMETER3_VALUE'
459: ,avalue => p_Grade);
460: --
461: WF_ENGINE.SetItemAttrText(itemtype => p_ItemType
462: ,itemkey => l_ItemKey
463: ,aname => 'PARAMETER4_VALUE'
464: ,avalue => p_Step);
465: --

Line 466: WF_ENGINE.SetItemAttrText(itemtype => p_ItemType

462: ,itemkey => l_ItemKey
463: ,aname => 'PARAMETER4_VALUE'
464: ,avalue => p_Step);
465: --
466: WF_ENGINE.SetItemAttrText(itemtype => p_ItemType
467: ,itemkey => l_ItemKey
468: ,aname => 'PARAMETER5_VALUE'
469: ,avalue => p_Speed);
470: --

Line 471: WF_ENGINE.SetItemAttrText(itemtype => p_ItemType

467: ,itemkey => l_ItemKey
468: ,aname => 'PARAMETER5_VALUE'
469: ,avalue => p_Speed);
470: --
471: WF_ENGINE.SetItemAttrText(itemtype => p_ItemType
472: ,itemkey => l_ItemKey
473: ,aname => 'PARAMETER6_VALUE'
474: ,avalue => TO_CHAR(p_Duration));
475: --

Line 476: WF_ENGINE.SetItemAttrText(itemtype => p_ItemType

472: ,itemkey => l_ItemKey
473: ,aname => 'PARAMETER6_VALUE'
474: ,avalue => TO_CHAR(p_Duration));
475: --
476: WF_ENGINE.SetItemAttrText(itemtype => p_ItemType
477: ,itemkey => l_ItemKey
478: ,aname => 'PARAMETER7_VALUE'
479: ,avalue => p_LastApprDt);
480: --

Line 481: WF_ENGINE.StartProcess(p_itemtype,l_itemkey);

477: ,itemkey => l_ItemKey
478: ,aname => 'PARAMETER7_VALUE'
479: ,avalue => p_LastApprDt);
480: --
481: WF_ENGINE.StartProcess(p_itemtype,l_itemkey);
482: --
483: COMMIT;
484: --
485: HR_UTILITY.set_location('Leaving:'||l_proc,20);