DBA Data[Home] [Help]

APPS.HR_KW_PERSON_API dependencies on PER_BUSINESS_GROUPS

Line 133: l_legislation_code per_business_groups.legislation_code%type;

129: --
130:
131: l_proc varchar2(72) := g_package||'update_kw_person';
132: l_effective_date date;
133: l_legislation_code per_business_groups.legislation_code%type;
134: l_discard_varchar2 varchar2(30);
135: --
136: cursor check_legislation
137: (c_person_id per_people_f.person_id%TYPE,

Line 143: per_business_groups bgp

139: )
140: is
141: select bgp.legislation_code
142: from per_people_f per,
143: per_business_groups bgp
144: where per.business_group_id = bgp.business_group_id
145: and per.person_id = c_person_id
146: and c_effective_date
147: between per.effective_start_date and per.effective_end_date;