DBA Data[Home] [Help]

APPS.HR_PROCESS_ADDRESS_SS dependencies on WF_ENGINE

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

445: IF NOT (p_contact_or_person = 'CONTACT' or p_contact_or_person = 'EMER_CR_NEW_CONT' or p_contact_or_person = 'EMRG_OVRW_UPD' or p_contact_or_person = 'EMRG_OVRW_DEL' or p_contact_or_person = 'EMER_CR_NEW_REL'
446: or p_contact_or_person = 'DPDNT_CR_NEW_CONT' or p_contact_or_person = 'DPDNT_OVRW_UPD' or p_contact_or_person = 'DPDNT_OVRW_DEL' or p_contact_or_person = 'DPDNT_CR_NEW_REL') THEN
447:
448: hr_utility.set_location(l_proc,40);
449: wf_engine.setItemAttrText (itemtype => p_item_type,
450: itemkey => p_item_key,
451: aname => 'P_EFFECTIVE_DATE',
452: avalue => to_char(p_effective_date,
453: g_date_format));

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

451: aname => 'P_EFFECTIVE_DATE',
452: avalue => to_char(p_effective_date,
453: g_date_format));
454:
455: wf_engine.setItemAttrDate (itemtype => p_item_type,
456: itemkey => p_item_key,
457: aname => 'CURRENT_EFFECTIVE_DATE',
458: avalue => p_effective_date);
459: END IF;

Line 826: l_review_item_name := wf_engine.GetActivityAttrText(itemtype => p_item_type,

822: l_transaction_table(l_count).param_value := p_activity_id;
823: l_transaction_table(l_count).param_data_type := 'VARCHAR2';
824:
825: BEGIN
826: l_review_item_name := wf_engine.GetActivityAttrText(itemtype => p_item_type,
827: itemkey => p_item_key,
828: actid => p_activity_id,
829: aname => gv_wf_review_region_item);
830: EXCEPTION

Line 853: l_contact_set := wf_engine.GetItemAttrNumber(itemtype => p_item_type,

849: -- to be retrieved for the contact person in context in review page.
850: -- The HR_LAST_CONTACT_SET is in from the work flow attribute
851: begin
852: hr_utility.set_location(l_proc,70);
853: l_contact_set := wf_engine.GetItemAttrNumber(itemtype => p_item_type,
854: itemkey => p_item_key,
855: aname => 'HR_CONTACT_SET');
856:
857: exception when others then

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

1144: hr_utility.set_location( l_proc,30);
1145: -- Set the P_EFFECTIVE_DATE and CURRENT_EFFECTIVE_DATE in wf item attributes to be retreived
1146: -- in review page
1147:
1148: wf_engine.setItemAttrText (itemtype => p_item_type,
1149: itemkey => p_item_key,
1150: aname => 'P_EFFECTIVE_DATE',
1151: avalue => to_char(p_effective_date,
1152: g_date_format));

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

1150: aname => 'P_EFFECTIVE_DATE',
1151: avalue => to_char(p_effective_date,
1152: g_date_format));
1153:
1154: wf_engine.setItemAttrDate (itemtype => p_item_type,
1155: itemkey => p_item_key,
1156: aname => 'CURRENT_EFFECTIVE_DATE',
1157: avalue => p_effective_date);
1158:

Line 1519: l_review_item_name := wf_engine.GetActivityAttrText(itemtype => p_item_type,

1515: l_transaction_table(l_count).param_data_type := 'VARCHAR2';
1516:
1517: BEGIN
1518: hr_utility.set_location( l_proc,50);
1519: l_review_item_name := wf_engine.GetActivityAttrText(itemtype => p_item_type,
1520: itemkey => p_item_key,
1521: actid => p_activity_id,
1522: aname => gv_wf_review_region_item);
1523: EXCEPTION