DBA Data[Home] [Help]

APPS.PAY_US_W2_WF dependencies on WF_ENGINE

Line 132: ln_current_assignment_id := wf_engine.GetItemAttrNumber

128: lv_contact_source := fnd_profile.value('HR_PAYROLL_CONTACT_SOURCE');
129:
130: hr_utility.trace('Profile Option value is : '|| lv_contact_source);
131:
132: ln_current_assignment_id := wf_engine.GetItemAttrNumber
133: (itemtype => itemtype
134: ,itemkey => itemkey
135: ,aname => 'CURRENT_ASSIGNMENT_ID');
136:

Line 139: lv_curr_contact_user := wf_engine.GetItemAttrText

135: ,aname => 'CURRENT_ASSIGNMENT_ID');
136:
137: hr_utility.trace('Assignment Id is : '|| to_char(ln_current_assignment_id));
138:
139: lv_curr_contact_user := wf_engine.GetItemAttrText
140: (itemtype => itemtype
141: ,itemkey => itemkey
142: ,aname => 'CONTACT_USERNAME');
143:

Line 144: ln_curr_contact_person_id := wf_engine.GetItemAttrNumber

140: (itemtype => itemtype
141: ,itemkey => itemkey
142: ,aname => 'CONTACT_USERNAME');
143:
144: ln_curr_contact_person_id := wf_engine.GetItemAttrNumber
145: (itemtype => itemtype
146: ,itemkey => itemkey
147: ,aname => 'CONTACT_PERSON_ID');
148:

Line 194: wf_engine.SetItemAttrNumber

190: ,p_orig_system_id => ln_next_contact_person_id
191: ,p_name => lv_next_contact_user
192: ,p_display_name => lv_dummy);
193:
194: wf_engine.SetItemAttrNumber
195: (itemtype => itemtype
196: ,itemkey => itemkey
197: ,aname => 'CONTACT_PERSON_ID'
198: ,avalue => ln_next_contact_person_id);

Line 200: wf_engine.SetItemAttrNumber

196: ,itemkey => itemkey
197: ,aname => 'CONTACT_PERSON_ID'
198: ,avalue => ln_next_contact_person_id);
199:
200: wf_engine.SetItemAttrNumber
201: (itemtype => itemtype
202: ,itemkey => itemkey
203: ,aname => 'CURRENT_ASSIGNMENT_ID'
204: ,avalue => ln_current_assignment_id);

Line 206: wf_engine.SetItemAttrText

202: ,itemkey => itemkey
203: ,aname => 'CURRENT_ASSIGNMENT_ID'
204: ,avalue => ln_current_assignment_id);
205:
206: wf_engine.SetItemAttrText
207: (itemtype => itemtype
208: ,itemkey => itemkey
209: ,aname => 'CONTACT_USERNAME'
210: ,avalue => lv_next_contact_user);