DBA Data[Home] [Help]

APPS.HR_RU_PERSON_API dependencies on PER_BUSINESS_GROUPS

Line 144: l_legislation_code per_business_groups.legislation_code%type;

140: --
141:
142: l_proc CONSTANT varchar2(72) := g_package||'update_ru_person';
143: l_effective_date date;
144: l_legislation_code per_business_groups.legislation_code%type;
145: --
146: cursor check_legislation
147: (c_person_id per_people_f.person_id%TYPE,
148: c_effective_date date

Line 153: per_business_groups bgp

149: )
150: is
151: select bgp.legislation_code
152: from per_people_f per,
153: per_business_groups bgp
154: where per.business_group_id = bgp.business_group_id
155: and per.person_id = c_person_id
156: and c_effective_date
157: between per.effective_start_date and per.effective_end_date;