DBA Data[Home] [Help]

APPS.BEN_EXT_PERSON dependencies on PER_PERIODS_OF_SERVICE

Line 1946: from per_periods_of_service pps

1942: , attribute7
1943: , attribute8
1944: , attribute9
1945: , attribute10
1946: from per_periods_of_service pps
1947: where pps.person_id = p_person_id
1948: and pps.date_start = (select max(pps1.date_start) -- this gets most recent
1949: from per_periods_of_service pps1
1950: where pps1.person_id = p_person_id

Line 1949: from per_periods_of_service pps1

1945: , attribute10
1946: from per_periods_of_service pps
1947: where pps.person_id = p_person_id
1948: and pps.date_start = (select max(pps1.date_start) -- this gets most recent
1949: from per_periods_of_service pps1
1950: where pps1.person_id = p_person_id
1951: and pps1.date_start <= p_effective_date);
1952:
1953: --