DBA Data[Home] [Help]

APPS.IRC_MRS_UPGRADE dependencies on PER_ALL_PEOPLE_F

Line 64: ,per_all_people_f ppf

60: select asg.assignment_id assignment_id
61: ,asg.object_version_number object_version_number
62: ,ppf.current_employee_flag current_employee_flag
63: from per_all_assignments_f asg
64: ,per_all_people_f ppf
65: where asg.person_id = ppf.person_id
66: and trunc(sysdate) between asg.effective_start_date and asg.effective_end_date
67: and trunc(sysdate) between ppf.effective_start_date and ppf.effective_end_date
68: and asg.recruitment_activity_id = p_recruitment_activity_id;

Line 235: from per_all_people_f per

231: update per_all_assignments_f asg
232: set recruitment_activity_id = l_int_ext_rec_id
233: where recruitment_activity_id = csr_rec_activity_rec.recruitment_activity_id
234: and not exists(select 1
235: from per_all_people_f per
236: where per.person_id=asg.person_id
237: and asg.effective_start_date
238: between per.effective_start_date and per.effective_end_date
239: and per.current_employee_flag <> 'Y'