DBA Data[Home] [Help]

APPS.HR_SUPERVISOR_SS dependencies on PER_PERSON_TYPES

Line 1911: select ppt.SYSTEM_PERSON_TYPE from per_all_people_f paf, per_person_types ppt where person_id = l_person_id

1907: l_re_hire_flow varchar2(25) default null;
1908: l_error_message varchar2(500);
1909: l_ex_emp varchar2(10) default null;
1910: CURSOR chk_ex_emp(l_person_id in number, l_effective_date in Date) is
1911: select ppt.SYSTEM_PERSON_TYPE from per_all_people_f paf, per_person_types ppt where person_id = l_person_id
1912: and paf.PERSON_TYPE_ID = ppt.PERSON_TYPE_ID
1913: and l_effective_date between effective_start_date and effective_end_date;
1914:
1915: l_proc constant varchar2(100) := g_package || ' update_asg';