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 1951: wf_engine.additemattr(itemtype => itemtype

1947:
1948: else
1949: hr_utility.set_location( l_proc,20);
1950: -- the TRANSACTION_ID does not exist so create it
1951: wf_engine.additemattr(itemtype => itemtype
1952: ,itemkey => itemkey
1953: ,aname => 'TRANSACTION_ID');
1954:
1955: end if;

Line 1964: wf_engine.additemattr(itemtype => itemtype

1960: ,p_name => 'TRANSACTION_PRIVILEGE') then
1961:
1962: -- the TRANSACTION_PRIVILEGE does not exist so create it
1963: hr_utility.set_location( l_proc,25);
1964: wf_engine.additemattr(itemtype => itemtype
1965: ,itemkey => itemkey
1966: ,aname => 'TRANSACTION_PRIVILEGE');
1967: end if;
1968:

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

1966: ,aname => 'TRANSACTION_PRIVILEGE');
1967: end if;
1968:
1969: -- get the TRANSACTION_PRIVILEGE
1970: l_transaction_privilege := wf_engine.getitemattrtext(itemtype => itemtype
1971: ,itemkey => itemkey
1972: ,aname => 'TRANSACTION_PRIVILEGE');
1973: -- check to see if the TRANSACTION_PRIVILEGE is null
1974: if l_transaction_privilege is null then

Line 1978: wf_engine.setitemattrtext(itemtype => itemtype

1974: if l_transaction_privilege is null then
1975: hr_utility.set_location( l_proc,30);
1976: -- default the TRANSACTION_PRIVILEGE to PRIVATE
1977: l_transaction_privilege := 'PRIVATE';
1978: wf_engine.setitemattrtext(itemtype => itemtype
1979: ,itemkey => itemkey
1980: ,aname => 'TRANSACTION_PRIVILEGE'
1981: ,avalue => l_transaction_privilege);
1982: end if;

Line 1990: wf_engine.setitemattrnumber(itemtype => itemtype

1986: ,p_creator_person_id => p_creator_person_id
1987: ,p_transaction_privilege => l_transaction_privilege
1988: ,p_transaction_id => l_transaction_id );
1989: -- set the TRANSACTION_ID
1990: wf_engine.setitemattrnumber(itemtype => itemtype
1991: ,itemkey => itemkey
1992: ,aname => 'TRANSACTION_ID'
1993: ,avalue => l_transaction_id);
1994:

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

2089: begin
2090: if (p_item_type is not null) and (p_item_key is not null)
2091: then
2092: hr_utility.set_location(l_proc,10);
2093: l_person_type := wf_engine.GetItemAttrText(itemtype => p_item_type,
2094: itemkey => p_item_key,
2095: aname => 'HR_SELECTED_PERSON_TYPE_ATTR');
2096: end if;
2097: exception

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

3141: lv_api_name := gv_package_name||'.PROCESS_API' ;
3142:
3143:
3144:
3145: ln_creator_person_id := wf_engine.GetItemAttrNumber(p_item_type,
3146: p_item_key,
3147: 'CREATOR_PERSON_ID');
3148:
3149: -- hr_utility.trace('Creator Person Id ' || ln_creator_person_id);

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

4415: hr_utility.set_location(l_proc,30);
4416: -- fix for bug#2826852
4417: -- new config option
4418: -- get the activity attribute DISP_WARN_ERROR_PAY_RATE
4419: lv_disp_warn_error_max_rate:= wf_engine.GetActivityAttrText(itemtype =>p_item_type,
4420: itemkey =>p_item_key,
4421: actid =>p_act_id,
4422: aname =>'DISP_WARN_ERROR_PAY_RATE',
4423: ignore_notfound =>true);