DBA Data[Home] [Help]

APPS.PQH_DE_LOCAL_COST_LIVING_PKG dependencies on PER_CONTACT_RELATIONSHIPS

Line 48: from per_contact_relationships pcr,

44: -- cursor to get the alimony amount of the Employee
45:
46: Cursor c_alimony_amount (P_person_id number,p_business_group_id number,p_effective_date date) is
47: select to_number(nvl(pcr.CONT_INFORMATION5,0))
48: from per_contact_relationships pcr,
49: per_all_people_f paf
50: where paf.PERSON_ID = p_PERSON_ID
51: and pcr.person_id = paf.person_id
52: and pcr.CONT_INFORMATION1 = 'N'

Line 65: from per_contact_relationships pcr,

61: -- cursor to get the sequence number of the child of the Employee
62:
63: Cursor c_seq_number (P_person_id number,p_business_group_id number,p_effective_date date) is
64: select to_number(nvl(pcr.CONT_INFORMATION6,0)) count1
65: from per_contact_relationships pcr,
66: per_all_people_f paf
67: where paf.PERSON_ID = p_PERSON_ID
68: and pcr.person_id = paf.person_id
69: and pcr.CONT_INFORMATION1 = 'N'