DBA Data[Home] [Help]

APPS.PSP_ENC_ASSIGNMENT_CHANGES dependencies on PER_ALL_PEOPLE_F

Line 614: FROM per_all_people_f where person_id = p_old_person_id

610: -- Bug 5526742
611:
612: CURSOR chk_asg_count is
613: SELECT count(CURRENT_EMPLOYEE_FLAG)
614: FROM per_all_people_f where person_id = p_old_person_id
615: AND current_employee_flag = 'Y'
616: and effective_start_date = (select max(effective_start_date)
617: FROM per_all_people_f
618: where effective_start_date < p_old_effective_start_date

Line 617: FROM per_all_people_f

613: SELECT count(CURRENT_EMPLOYEE_FLAG)
614: FROM per_all_people_f where person_id = p_old_person_id
615: AND current_employee_flag = 'Y'
616: and effective_start_date = (select max(effective_start_date)
617: FROM per_all_people_f
618: where effective_start_date < p_old_effective_start_date
619: and person_id = p_old_person_id);
620:
621: l_count number;

Line 633: from per_all_people_f papf, per_person_types ppt

629: --Bug 12969737 Begin
630:
631: cursor cancel_hire_asg_csr(p_person_id number) is
632: select min(papf.EFFECTIVE_START_DATE),max(papf.EFFECTIVE_END_DATE)
633: from per_all_people_f papf, per_person_types ppt
634: where papf.person_id = p_person_id
635: and papf.PERSON_TYPE_ID = ppt.PERSON_TYPE_ID
636: and ppt.SYSTEM_PERSON_TYPE = 'EMP';
637: