DBA Data[Home] [Help]

APPS.BEN_DETERMINE_DATE dependencies on PER_PERIODS_OF_SERVICE

Line 825: from per_periods_of_service pps

821: --
822:
823: cursor c_pps is
824: select date_start
825: from per_periods_of_service pps
826: where pps.person_id = p_person_id
827: and pps.date_start = (select max(pps1.date_start) -- this gets most recent
828: from per_periods_of_service pps1
829: where pps1.person_id = p_person_id

Line 828: from per_periods_of_service pps1

824: select date_start
825: from per_periods_of_service pps
826: where pps.person_id = p_person_id
827: and pps.date_start = (select max(pps1.date_start) -- this gets most recent
828: from per_periods_of_service pps1
829: where pps1.person_id = p_person_id
830: and pps1.date_start = nvl(l_lf_evt_ocrd_dt,p_effective_date )
831: );
832: --

Line 835: from per_periods_of_service pps

831: );
832: --
833: cursor c_hire_date is
834: select max(date_start)
835: from per_periods_of_service pps
836: where pps.person_id = p_person_id
837: and pps.date_start <= nvl(l_lf_evt_ocrd_dt,p_effective_date);
838:
839: --