DBA Data[Home] [Help]

APPS.HR_CCMGR_SS dependencies on WF_ENGINE

Line 104: /* ld_effective_date := wf_engine.GetItemAttrDate

100: document_type IN OUT NOCOPY Varchar2) IS
101: l_proc Varchar2(200) := g_package || 'get_noaccess_list';
102: Begin
103: hr_utility.set_location(' Entering:' || l_proc,5);
104: /* ld_effective_date := wf_engine.GetItemAttrDate
105: (itemtype => itemtype
106: ,itemkey => itemkey
107: ,aname => 'CURRENT_EFFECTIVE_DATE'); */
108:

Line 132: lnSupId := wf_engine.GetItemAttrNumber(itemtype => itemtype,

128: lnSupUserName Varchar2(30);
129: Begin
130: hr_utility.set_location(' Entering:' || l_proc,5);
131: result := 'COMPLETE:'||'N';
132: lnSupId := wf_engine.GetItemAttrNumber(itemtype => itemtype,
133: itemkey => itemkey,
134: aname => 'HR_MGR_ID_OF_LOGIN_PERSON');
135: hr_utility.set_location(l_proc,10);
136: --

Line 138: nvl(wf_engine.GetItemAttrText(itemtype => itemtype, itemkey => itemkey,

134: aname => 'HR_MGR_ID_OF_LOGIN_PERSON');
135: hr_utility.set_location(l_proc,10);
136: --
137: If (lnSupId is not Null And
138: nvl(wf_engine.GetItemAttrText(itemtype => itemtype, itemkey => itemkey,
139: aname => 'HR_TERM_SUP_FLAG'),'#') = 'Y') Then
140: hr_utility.set_location(l_proc,15);
141: result := 'COMPLETE:'||'Y';
142: wf_directory.GetUserName ('PER',

Line 147: wf_engine.SetItemAttrText(itemtype,

143: lnSupId,
144: lnSupUserName,
145: lnSupName);
146: hr_utility.set_location(l_proc,20);
147: wf_engine.SetItemAttrText(itemtype,
148: itemkey,
149: 'SUPERVISOR_USERNAME',
150: lnSupUserName);
151: hr_utility.set_location(l_proc,25);

Line 152: wf_engine.SetItemAttrText(itemtype,

148: itemkey,
149: 'SUPERVISOR_USERNAME',
150: lnSupUserName);
151: hr_utility.set_location(l_proc,25);
152: wf_engine.SetItemAttrText(itemtype,
153: itemkey,
154: 'SUPERVISOR_DISPLAY_NAME',
155: lnSupName);
156: End If;

Line 410: l_eff_date := nvl(fnd_date.canonical_to_date(wf_engine.GetItemAttrText(p_item_key,p_item_type,'P_EFFECTIVE_DATE')),trunc(sysdate));

406: p_login_person_id := nvl(fnd_global.employee_id,p_login_person_id);
407:
408: Begin
409: hr_utility.set_location(l_proc,10);
410: l_eff_date := nvl(fnd_date.canonical_to_date(wf_engine.GetItemAttrText(p_item_key,p_item_type,'P_EFFECTIVE_DATE')),trunc(sysdate));
411: Exception when others then
412: l_eff_date := trunc(sysdate);
413: hr_utility.set_location(l_proc,555);
414: End;

Line 608: l_trans_tbl(l_count).param_value := wf_engine.GetActivityAttrText(p_item_type,p_item_key,

604:
605: hr_utility.set_location(l_proc ,100);
606: l_count := l_count+1;
607: l_trans_tbl(l_count).param_name := 'P_REVIEW_PROC_CALL';
608: l_trans_tbl(l_count).param_value := wf_engine.GetActivityAttrText(p_item_type,p_item_key,
609: p_activity_id, 'HR_REVIEW_REGION_ITEM', False);
610:
611: l_trans_tbl(l_count).param_data_type := 'VARCHAR2';
612: