DBA Data[Home] [Help]

APPS.IGS_HE_IMPORT_DATA dependencies on HZ_CITIZENSHIP

Line 526: FROM hz_citizenship

522:
523: -- Get the latest citizenship record for the person and interface country code
524: CURSOR c_pe_nat IS
525: SELECT *
526: FROM hz_citizenship
527: WHERE party_id = p_person_id AND
528: country_code = l_oss_nation
529: ORDER BY date_recognized DESC ;
530: c_pe_nat_rec c_pe_nat%ROWTYPE ;

Line 536: FROM hz_citizenship

532: -- Get all the citizenship records for the person of a different country than
533: -- the interface country code , and close them
534: CURSOR c_other_nat IS
535: SELECT *
536: FROM hz_citizenship
537: WHERE party_id = p_person_id AND
538: country_code <> l_oss_nation
539: ORDER BY country_code DESC ;
540: