DBA Data[Home] [Help]

APPS.HR_PERSON_API dependencies on PER_PERSON_TYPE_USAGES_F

Line 631: from per_person_type_usages_f ptu

627: -- is already exists for the PTU table instead of per_all_people_f
628: l_old_person_type_id := null;
629: begin
630: select person_type_id into l_old_person_type_id
631: from per_person_type_usages_f ptu
632: where ptu.person_id=p_person_id
633: and ptu.person_type_id = p_person_type_id
634: and p_effective_date between ptu.effective_start_date
635: and ptu.effective_end_date;

Line 1777: ,per_person_type_usages_f ptu

1773: --for bug 7369431
1774: cursor chk_person_type is
1775: SELECT typ.system_person_type
1776: FROM per_person_types typ
1777: ,per_person_type_usages_f ptu
1778: WHERE typ.person_type_id = ptu.person_type_id
1779: AND p_effective_date BETWEEN ptu.effective_start_date
1780: AND ptu.effective_end_date
1781: AND ptu.person_id = p_person_id;