DBA Data[Home] [Help]

APPS.PAY_DIRECT_DEPOSIT_XML dependencies on PER_PERIODS_OF_SERVICE

Line 162: per_periods_of_service pps

158: ppf.full_name, ppf.national_identifier,
159: ppf.employee_number
160: FROM per_assignments_f paf,
161: per_all_people_f ppf,
162: per_periods_of_service pps
163: WHERE paf.person_id = ppf.person_id
164: and paf.assignment_id = p_assignment_id
165: and p_effective_date between paf.effective_start_date
166: and paf.effective_end_date

Line 171: from per_periods_of_service pps1

167: and p_effective_date between ppf.effective_start_date
168: and ppf.effective_end_date
169: and pps.person_id = ppf.person_id
170: and pps.date_start = (select max(pps1.date_start)
171: from per_periods_of_service pps1
172: where pps1.person_id = paf.person_id
173: and pps1.date_start <= p_effective_date);
174:
175: