DBA Data[Home] [Help]

APPS.PER_PEOPLE_V7_PKG dependencies on HR_PHONE_API

Line 347: hr_phone_api.create_phone

343: --
344: if (l_old_work_telephone is null and
345: x_work_telephone is not null) then
346: hr_utility.set_location('Entering : per_people_v7_pkg.update_row',70);
347: hr_phone_api.create_phone
348: (p_date_from => x_start_date
349: ,p_date_to => null
350: ,p_phone_type => 'W1'
351: ,p_phone_number => x_work_telephone

Line 363: hr_phone_api.delete_phone(FALSE, l_phone_id, l_phn_object_version_number);

359: --
360: -- If old entry is not null and corrected entry is null then delete the phone.
361: --
362: elsif l_old_work_telephone is not null and x_work_telephone is null then
363: hr_phone_api.delete_phone(FALSE, l_phone_id, l_phn_object_version_number);
364: hr_utility.set_location('Entering : per_people_v7_pkg.update_row',80);
365: --
366: -- If old and corrected entries are both not null then update the row with
367: -- no changes to start and to dates.

Line 378: hr_phone_api.update_phone

374: -- row "open" until the "end of time"
375: if ( l_old_work_telephone <> x_work_telephone) then
376: -- Bug 5554383 : Added IF condition.
377: hr_utility.set_location('Entering : per_people_v7_pkg.update_row',95);
378: hr_phone_api.update_phone
379: (p_phone_id => l_phone_id,
380: p_phone_number => x_work_telephone,
381: p_date_to => null, -- 1020074 x_termination_date,
382: p_object_version_number => l_phn_object_version_number,

Line 1576: hr_phone_api.update_phone

1572:
1573: open phones;
1574: fetch phones into l_Phone_Id,l_Work_Telephone,l_Phone_OVN;
1575: if (phones%found) then
1576: hr_phone_api.update_phone
1577: (p_phone_id => l_Phone_Id,
1578: p_phone_number => l_work_telephone,
1579: p_date_to => null,
1580: p_object_version_number => l_Phone_OVN,