DBA Data[Home] [Help]

APPS.PAY_US_WEB_W4 dependencies on PER_PEOPLE_EXTRA_INFO

Line 852: from per_people_extra_info where person_id=p_person_id

848: --added by vaprakas 11/21/06 Bug 5607135
849: cursor csr_chk_NRA_status
850: is
851: select information_type,pei_information_category,pei_information5,pei_information9
852: from per_people_extra_info where person_id=p_person_id
853: and information_type like 'PER_US_ADDITIONAL_DETAILS'
854: and pei_information_category like 'PER_US_ADDITIONAL_DETAILS'
855: and pei_information5 like 'N'
856: and pei_information9 not in ('US');

Line 861: from per_people_extra_info where person_id=p_person_id

857:
858: cursor csr_chk_student_status
859: is
860: select pei_information1,pei_information2
861: from per_people_extra_info where person_id=p_person_id
862: and information_type like 'PER_US_ADDITIONAL_DETAILS'
863: and pei_information_category like 'PER_US_ADDITIONAL_DETAILS'
864: and (pei_information1 = 'Y'
865: or pei_information2 = 'Y');

Line 868: l_information_type per_people_extra_info.information_type%TYPE;

864: and (pei_information1 = 'Y'
865: or pei_information2 = 'Y');
866:
867:
868: l_information_type per_people_extra_info.information_type%TYPE;
869: l_pei_information_category per_people_extra_info.pei_information_category%TYPE;
870: l_pei_information5 per_people_extra_info.pei_information5%TYPE;
871: l_pei_information9 per_people_extra_info.pei_information9%TYPE;
872: l_student_flag varchar2(3);

Line 869: l_pei_information_category per_people_extra_info.pei_information_category%TYPE;

865: or pei_information2 = 'Y');
866:
867:
868: l_information_type per_people_extra_info.information_type%TYPE;
869: l_pei_information_category per_people_extra_info.pei_information_category%TYPE;
870: l_pei_information5 per_people_extra_info.pei_information5%TYPE;
871: l_pei_information9 per_people_extra_info.pei_information9%TYPE;
872: l_student_flag varchar2(3);
873: l_student per_people_extra_info.pei_information1%TYPE;

Line 870: l_pei_information5 per_people_extra_info.pei_information5%TYPE;

866:
867:
868: l_information_type per_people_extra_info.information_type%TYPE;
869: l_pei_information_category per_people_extra_info.pei_information_category%TYPE;
870: l_pei_information5 per_people_extra_info.pei_information5%TYPE;
871: l_pei_information9 per_people_extra_info.pei_information9%TYPE;
872: l_student_flag varchar2(3);
873: l_student per_people_extra_info.pei_information1%TYPE;
874: l_business_apprentice per_people_extra_info.pei_information2%TYPE;

Line 871: l_pei_information9 per_people_extra_info.pei_information9%TYPE;

867:
868: l_information_type per_people_extra_info.information_type%TYPE;
869: l_pei_information_category per_people_extra_info.pei_information_category%TYPE;
870: l_pei_information5 per_people_extra_info.pei_information5%TYPE;
871: l_pei_information9 per_people_extra_info.pei_information9%TYPE;
872: l_student_flag varchar2(3);
873: l_student per_people_extra_info.pei_information1%TYPE;
874: l_business_apprentice per_people_extra_info.pei_information2%TYPE;
875:

Line 873: l_student per_people_extra_info.pei_information1%TYPE;

869: l_pei_information_category per_people_extra_info.pei_information_category%TYPE;
870: l_pei_information5 per_people_extra_info.pei_information5%TYPE;
871: l_pei_information9 per_people_extra_info.pei_information9%TYPE;
872: l_student_flag varchar2(3);
873: l_student per_people_extra_info.pei_information1%TYPE;
874: l_business_apprentice per_people_extra_info.pei_information2%TYPE;
875:
876: ln_prev_comma_position NUMBER;
877: ln_comma_position NUMBER;

Line 874: l_business_apprentice per_people_extra_info.pei_information2%TYPE;

870: l_pei_information5 per_people_extra_info.pei_information5%TYPE;
871: l_pei_information9 per_people_extra_info.pei_information9%TYPE;
872: l_student_flag varchar2(3);
873: l_student per_people_extra_info.pei_information1%TYPE;
874: l_business_apprentice per_people_extra_info.pei_information2%TYPE;
875:
876: ln_prev_comma_position NUMBER;
877: ln_comma_position NUMBER;
878: lv_notmatch_state pay_us_states.state_name%TYPE;