DBA Data[Home] [Help]

APPS.PER_SHA_BUS dependencies on PER_PEOPLE_F

Line 155: -- PERSON_ID is mandatory and must exist in PER_PEOPLE_F for the date

151: -- |----------------------------< chk_person_id >-----------------------------|
152: -- ----------------------------------------------------------------------------
153: --
154: -- Descriiption :
155: -- PERSON_ID is mandatory and must exist in PER_PEOPLE_F for the date
156: -- of the holiday, DATE_NOT_TAKEN.
157: --
158: -- Pre-conditions :
159: -- None

Line 190: FROM per_people_f per

186: l_dummy number;
187: --
188: CURSOR csr_valid_person_id IS
189: SELECT per.person_id
190: FROM per_people_f per
191: WHERE per.person_id = p_person_id
192: AND p_date_not_taken BETWEEN per.effective_start_date
193: AND per.effective_end_date;
194: begin

Line 205: -- Check that the PERSON_ID exists in PER_PEOPLE_F

201: ,p_argument => 'person_id'
202: ,p_argument_value => p_person_id
203: );
204: --
205: -- Check that the PERSON_ID exists in PER_PEOPLE_F
206: --
207: open csr_valid_person_id;
208: fetch csr_valid_person_id into l_dummy;
209: if (csr_valid_person_id%NOTFOUND) then

Line 357: per_people_f per,

353: --
354: CURSOR csr_valid_actual_date_taken IS
355: SELECT NVL(sth.standard_holiday_id,99)
356: FROM per_standard_holidays sth,
357: per_people_f per,
358: per_business_groups bus
359: WHERE per.person_id = p_person_id
360: AND p_actual_date_taken BETWEEN per.effective_start_date
361: AND per.effective_end_date

Line 777: , per_people_f per

773: --
774: cursor csr_leg_code is
775: select pbg.legislation_code
776: from per_business_groups pbg
777: , per_people_f per
778: , per_std_holiday_absences sha
779: where sha.std_holiday_absences_id = p_std_holiday_absences_id
780: and per.person_id = sha.person_id
781: and pbg.business_group_id = per.business_group_id