DBA Data[Home] [Help]

APPS.HXC_DEPOSIT_WRAPPER_UTILITIES dependencies on PER_ALL_PEOPLE_F

Line 685: from per_all_people_f papf

681: select papf.full_name
682: ,paa.assignment_number
683: ,to_char(papf.original_date_of_hire,'YYYY/MM/DD')
684: ,paa.assignment_id
685: from per_all_people_f papf
686: ,per_all_assignments_f paa
687: where paa.person_id = papf.person_id
688: and p_d between paa.effective_start_date and paa.effective_end_date
689: and p_d between papf.effective_start_date and papf.effective_end_date

Line 711: from per_all_people_f

707: cursor closest_per_record
708: (p_person_id in number
709: ,p_d in date) is
710: select full_name,to_char(original_date_of_hire,'YYYY/MM/DD')
711: from per_all_people_f
712: where person_id = p_person_id
713: and effective_start_date <= p_d
714: and effective_end_date >= p_d;
715:

Line 717: l_full_name PER_ALL_PEOPLE_F.FULL_NAME%TYPE;

713: and effective_start_date <= p_d
714: and effective_end_date >= p_d;
715:
716:
717: l_full_name PER_ALL_PEOPLE_F.FULL_NAME%TYPE;
718: l_assignment_number PER_ALL_ASSIGNMENTS_F.ASSIGNMENT_NUMBER%TYPE;
719: l_assignment_id PER_ALL_ASSIGNMENTS_F.ASSIGNMENT_ID%TYPE;
720: l_hire_date VARCHAR2(30);
721: l_asg_start_date DATE;