DBA Data[Home] [Help]

APPS.HR_PROCESS_PERSON_SS dependencies on WF_ENGINE

Line 1808: l_appl_assignment_id := wf_engine.getItemAttrText(

1804: fetch gc_get_current_applicant_flag into l_current_applicant_flag, l_current_employee_flag, l_current_npw_flag;
1805: close gc_get_current_applicant_flag;
1806:
1807: -- get the assignment_id from workflow
1808: l_appl_assignment_id := wf_engine.getItemAttrText(
1809: itemtype => p_item_type,
1810: itemkey => p_item_key,
1811: aname => 'CURRENT_ASSIGNMENT_ID');
1812:

Line 2261: wf_engine.setItemAttrText (itemtype => p_item_type,

2257:
2258: -- Set the P_EFFECTIVE_DATE and CURRENT_EFFECTIVE_DATE in wf item attributes to be retreived
2259: -- in review page
2260:
2261: wf_engine.setItemAttrText (itemtype => p_item_type,
2262: itemkey => p_item_key,
2263: aname => 'P_EFFECTIVE_DATE',
2264: avalue => to_char(p_effective_date,
2265: g_date_format));

Line 2267: wf_engine.setItemAttrDate (itemtype => p_item_type,

2263: aname => 'P_EFFECTIVE_DATE',
2264: avalue => to_char(p_effective_date,
2265: g_date_format));
2266:
2267: wf_engine.setItemAttrDate (itemtype => p_item_type,
2268: itemkey => p_item_key,
2269: aname => 'CURRENT_EFFECTIVE_DATE',
2270: avalue => p_effective_date);
2271:

Line 3033: wf_engine.GetActivityAttrText(itemtype => p_item_type,

3029: l_review_item_name := p_review_page_region_code;
3030: if (p_review_page_region_code IS NULL) then
3031: BEGIN
3032: l_review_item_name :=
3033: wf_engine.GetActivityAttrText(itemtype => p_item_type,
3034: itemkey => p_item_key,
3035: actid => p_actid,
3036: aname => g_wf_review_regn_itm_attr_name);
3037: EXCEPTION

Line 6934: l_transaction_step := to_number(wf_engine.GetItemAttrText

6930: );*/
6931: END IF;
6932: -- end cobra codes
6933: --
6934: l_transaction_step := to_number(wf_engine.GetItemAttrText
6935: (itemtype => l_item_type,
6936: itemkey => l_item_key,
6937: aname =>'USER_TRANSACTION_STEP'));
6938: if l_transaction_step is not null then

Line 6964: l_user_pswd := wf_engine.GetItemAttrText

6960: ,p_respons_id => l_respons_id
6961: ,p_respons_appl_id => l_respons_appl_id
6962: );
6963:
6964: l_user_pswd := wf_engine.GetItemAttrText
6965: (itemtype => l_item_type,
6966: itemkey => l_item_key,
6967: aname =>'USER_ACCOUNT_INFO');
6968:

Line 6969: wf_engine.SetItemAttrText (itemtype => l_item_type,

6965: (itemtype => l_item_type,
6966: itemkey => l_item_key,
6967: aname =>'USER_ACCOUNT_INFO');
6968:
6969: wf_engine.SetItemAttrText (itemtype => l_item_type,
6970: itemkey => l_item_key,
6971: aname => 'USER_ACCOUNT_INFO',
6972: avalue => null);
6973: ben_process_user_ss_api.create_user_details(

Line 7338: l_appl_assignment_id := wf_engine.getItemAttrText(

7334: END IF;
7335:
7336:
7337: -- get the assignment_id from workflow for the applicant
7338: l_appl_assignment_id := wf_engine.getItemAttrText(
7339: itemtype => p_item_type,
7340: itemkey => p_item_key,
7341: aname => 'CURRENT_ASSIGNMENT_ID');
7342:

Line 7829: wf_engine.setItemAttrText (itemtype => p_item_type,

7825: p_per_information27, p_per_information28,
7826: p_per_information29, p_per_information30);
7827: end if;
7828:
7829: wf_engine.setItemAttrText (itemtype => p_item_type,
7830: itemkey => p_item_key,
7831: aname => 'HR_SECTION_DISPLAY_NAME',
7832: avalue => l_full_name);
7833:

Line 7837: wf_engine.setItemAttrText (itemtype => p_item_type,

7833:
7834: -- Set the P_EFFECTIVE_DATE and CURRENT_EFFECTIVE_DATE in wf item attributes to be retreived
7835: -- in review page
7836:
7837: wf_engine.setItemAttrText (itemtype => p_item_type,
7838: itemkey => p_item_key,
7839: aname => 'P_EFFECTIVE_DATE',
7840: avalue => to_char(p_effective_date,
7841: g_date_format));

Line 7843: wf_engine.setItemAttrDate (itemtype => p_item_type,

7839: aname => 'P_EFFECTIVE_DATE',
7840: avalue => to_char(p_effective_date,
7841: g_date_format));
7842:
7843: wf_engine.setItemAttrDate (itemtype => p_item_type,
7844: itemkey => p_item_key,
7845: aname => 'CURRENT_EFFECTIVE_DATE',
7846: avalue => p_effective_date);
7847: --

Line 8604: wf_engine.GetActivityAttrText(itemtype => p_item_type,

8600: if (p_review_page_region_code IS NULL) then
8601: BEGIN
8602: hr_utility.set_location('p_review_page_region_code IS NULL'||l_proc,125);
8603: l_review_item_name :=
8604: wf_engine.GetActivityAttrText(itemtype => p_item_type,
8605: itemkey => p_item_key,
8606: actid => p_actid,
8607: aname => g_wf_review_regn_itm_attr_name);
8608: EXCEPTION