DBA Data[Home] [Help]

APPS.HR_PAY_RATE_SS dependencies on WF_ENGINE

Line 208: wf_engine.setItemAttrText

204: CLOSE csr_check_mid_pay_period;
205: -- Need to set the item attribute to 'N' because this may be
206: -- a Return For Correction and the value of the item attribute
207: -- was set to 'Y' previously.
208: wf_engine.setItemAttrText
209: (itemtype => p_item_type
210: ,itemkey => p_item_key
211: ,aname => g_mid_pay_period_change
212: ,avalue => 'N');

Line 223: wf_engine.setItemAttrText

219: -- pay_basis_id. If that is null, then this is the first time
220: -- salary basis was entered. We don't need to perform the check
221: -- because there is no element type changed.
222: CLOSE csr_check_mid_pay_period;
223: wf_engine.setItemAttrText
224: (itemtype => p_item_type
225: ,itemkey => p_item_key
226: ,aname => g_mid_pay_period_change
227: ,avalue => 'Y');

Line 1851: wf_engine.additemattr(itemtype => itemtype

1847:
1848: else
1849: hr_utility.set_location( l_proc,20);
1850: -- the TRANSACTION_ID does not exist so create it
1851: wf_engine.additemattr(itemtype => itemtype
1852: ,itemkey => itemkey
1853: ,aname => 'TRANSACTION_ID');
1854:
1855: end if;

Line 1864: wf_engine.additemattr(itemtype => itemtype

1860: ,p_name => 'TRANSACTION_PRIVILEGE') then
1861:
1862: -- the TRANSACTION_PRIVILEGE does not exist so create it
1863: hr_utility.set_location( l_proc,25);
1864: wf_engine.additemattr(itemtype => itemtype
1865: ,itemkey => itemkey
1866: ,aname => 'TRANSACTION_PRIVILEGE');
1867: end if;
1868:

Line 1870: l_transaction_privilege := wf_engine.getitemattrtext(itemtype => itemtype

1866: ,aname => 'TRANSACTION_PRIVILEGE');
1867: end if;
1868:
1869: -- get the TRANSACTION_PRIVILEGE
1870: l_transaction_privilege := wf_engine.getitemattrtext(itemtype => itemtype
1871: ,itemkey => itemkey
1872: ,aname => 'TRANSACTION_PRIVILEGE');
1873: -- check to see if the TRANSACTION_PRIVILEGE is null
1874: if l_transaction_privilege is null then

Line 1878: wf_engine.setitemattrtext(itemtype => itemtype

1874: if l_transaction_privilege is null then
1875: hr_utility.set_location( l_proc,30);
1876: -- default the TRANSACTION_PRIVILEGE to PRIVATE
1877: l_transaction_privilege := 'PRIVATE';
1878: wf_engine.setitemattrtext(itemtype => itemtype
1879: ,itemkey => itemkey
1880: ,aname => 'TRANSACTION_PRIVILEGE'
1881: ,avalue => l_transaction_privilege);
1882: end if;

Line 1890: wf_engine.setitemattrnumber(itemtype => itemtype

1886: ,p_creator_person_id => p_creator_person_id
1887: ,p_transaction_privilege => l_transaction_privilege
1888: ,p_transaction_id => l_transaction_id );
1889: -- set the TRANSACTION_ID
1890: wf_engine.setitemattrnumber(itemtype => itemtype
1891: ,itemkey => itemkey
1892: ,aname => 'TRANSACTION_ID'
1893: ,avalue => l_transaction_id);
1894:

Line 1993: l_person_type := wf_engine.GetItemAttrText(itemtype => p_item_type,

1989: begin
1990: if (p_item_type is not null) and (p_item_key is not null)
1991: then
1992: hr_utility.set_location(l_proc,10);
1993: l_person_type := wf_engine.GetItemAttrText(itemtype => p_item_type,
1994: itemkey => p_item_key,
1995: aname => 'HR_SELECTED_PERSON_TYPE_ATTR');
1996: end if;
1997: exception

Line 2988: ln_creator_person_id := wf_engine.GetItemAttrNumber(p_item_type,

2984: lv_api_name := gv_package_name||'.PROCESS_API' ;
2985:
2986:
2987:
2988: ln_creator_person_id := wf_engine.GetItemAttrNumber(p_item_type,
2989: p_item_key,
2990: 'CREATOR_PERSON_ID');
2991:
2992: -- hr_utility.trace('Creator Person Id ' || ln_creator_person_id);

Line 4258: lv_disp_warn_error_max_rate:= wf_engine.GetActivityAttrText(itemtype =>p_item_type,

4254: hr_utility.set_location(l_proc,30);
4255: -- fix for bug#2826852
4256: -- new config option
4257: -- get the activity attribute DISP_WARN_ERROR_PAY_RATE
4258: lv_disp_warn_error_max_rate:= wf_engine.GetActivityAttrText(itemtype =>p_item_type,
4259: itemkey =>p_item_key,
4260: actid =>p_act_id,
4261: aname =>'DISP_WARN_ERROR_PAY_RATE',
4262: ignore_notfound =>true);