DBA Data[Home] [Help]

APPS.HR_PERSON_DEPLOYMENT_SWI dependencies on WF_ENGINE

Line 2773: lv_ntf_sub_msg := wf_engine.GetItemAttrText(itemtype => lv_item_type ,

2769: hr_utility.set_location('ItemKey:'||lv_item_key,14);
2770: end if;
2771: -- lv_process_display_name := hr_workflow_ss.getProcessDisplayName(lv_item_type,lv_item_key);
2772:
2773: lv_ntf_sub_msg := wf_engine.GetItemAttrText(itemtype => lv_item_type ,
2774: itemkey => lv_item_key,
2775: aname => 'HR_NTF_SUB_FND_MSG_ATTR',
2776: ignore_notfound=>true);
2777:

Line 2786: l_creator_person_id:= wf_engine.GetItemAttrNumber

2782: lv_process_display_name:= fnd_message.get;
2783: end if;
2784:
2785:
2786: l_creator_person_id:= wf_engine.GetItemAttrNumber
2787: (itemtype => lv_item_type
2788: ,itemkey => lv_item_key
2789: ,aname => 'CREATOR_PERSON_ID');
2790:

Line 2792: l_current_person_id:= wf_engine.GetItemAttrNumber

2788: ,itemkey => lv_item_key
2789: ,aname => 'CREATOR_PERSON_ID');
2790:
2791:
2792: l_current_person_id:= wf_engine.GetItemAttrNumber
2793: (itemtype => lv_item_type
2794: ,itemkey => lv_item_key
2795: ,aname => 'CURRENT_PERSON_ID');
2796: if g_debug then

Line 2866: l_current_disp_name := wf_engine.GetItemAttrText

2862:
2863: if(l_current_disp_name is null ) then
2864: -- cud still be null if person doesnot exist in per_all_people_f as of now.
2865: -- resort to the existing code of fetching from wf item attribute.
2866: l_current_disp_name := wf_engine.GetItemAttrText
2867: (itemtype => lv_item_type
2868: ,itemkey => lv_item_key
2869: ,aname => 'CURRENT_PERSON_DISPLAY_NAME');
2870: end if;

Line 2927: Wf_Engine.SetItemAttrDate(itemtype => l_item_type

2923: End;
2924: hr_utility.set_location('Entering: '||l_proc,42);
2925: if ((l_item_key is not null) and (l_item_type is not null) and (p_effective_date is not null))
2926: then
2927: Wf_Engine.SetItemAttrDate(itemtype => l_item_type
2928: ,itemkey => l_item_key
2929: ,aname => 'CURRENT_EFFECTIVE_DATE'
2930: ,avalue => TO_DATE(TO_CHAR(p_effective_date,'RRRR-MM-DD'),'RRRR-MM-DD'));
2931: