DBA Data[Home] [Help]

APPS.HR_HK_PERSON_API dependencies on PER_BUSINESS_GROUPS

Line 126: l_legislation_code per_business_groups.legislation_code%type;

122: --
123:
124: l_proc VARCHAR2(72) := g_package||'update_hk_person';
125: l_effective_date DATE;
126: l_legislation_code per_business_groups.legislation_code%type;
127: l_discard_varchar2 VARCHAR2(30);
128: --
129: CURSOR check_legislation
130: (c_person_id per_people_f.person_id%TYPE,

Line 136: per_business_groups bgp

132: )
133: IS
134: select bgp.legislation_code
135: from per_people_f per,
136: per_business_groups bgp
137: where per.business_group_id = bgp.business_group_id
138: and per.person_id = c_person_id
139: and c_effective_date
140: between per.effective_start_date and per.effective_end_date;