DBA Data[Home] [Help]

APPS.BEN_EXT_PERSON dependencies on PER_PERIODS_OF_SERVICE

Line 1980: from per_periods_of_service pps

1976: , attribute7
1977: , attribute8
1978: , attribute9
1979: , attribute10
1980: from per_periods_of_service pps
1981: where pps.person_id = p_person_id
1982: and pps.date_start = (select max(pps1.date_start) -- this gets most recent
1983: from per_periods_of_service pps1
1984: where pps1.person_id = p_person_id

Line 1983: from per_periods_of_service pps1

1979: , attribute10
1980: from per_periods_of_service pps
1981: where pps.person_id = p_person_id
1982: and pps.date_start = (select max(pps1.date_start) -- this gets most recent
1983: from per_periods_of_service pps1
1984: where pps1.person_id = p_person_id
1985: and pps1.date_start <= p_effective_date);
1986:
1987: --