DBA Data[Home] [Help]

APPS.IRC_MRS_UPGRADE dependencies on PER_ALL_ASSIGNMENTS_F

Line 63: from per_all_assignments_f asg

59: cursor csr_asg_rec_activity(p_recruitment_activity_id number) is
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

Line 231: update per_all_assignments_f asg

227: --
228: -- update any non-employee assignments which were pointing to this recruitment activity so that
229: -- they point to the new external one
230: --
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