DBA Data[Home] [Help]

APPS.HZ_MATCH_RULE_2 dependencies on HZ_CONTACT_POINTS

Line 3902: from hz_contact_points

3898: p_party_site_list HZ_PARTY_SEARCH.IDList;
3899: p_contact_ids HZ_PARTY_SEARCH.IDList;
3900: l_match_idx NUMBER;
3901: cursor get_cpts_for_party_sites is select contact_point_id
3902: from hz_contact_points
3903: where owner_table_name = 'HZ_PARTY_SITES'
3904: and primary_flag='Y'
3905: and owner_table_id = p_party_site_id;
3906: BEGIN

Line 3987: from hz_org_contacts a, hz_relationships b, hz_contact_points c

3983: p_party_site_list HZ_PARTY_SEARCH.IDList;
3984: p_contact_ids HZ_PARTY_SEARCH.IDList;
3985: l_match_idx NUMBER;
3986: cursor get_cpt_for_contact_id is select contact_point_id
3987: from hz_org_contacts a, hz_relationships b, hz_contact_points c
3988: where a.party_relationship_id = b.relationship_id
3989: and c.owner_table_name = 'HZ_PARTIES'
3990: and c.primary_flag='Y'
3991: and c.owner_table_id = b.party_id

Line 5497: FROM HZ_CONTACT_POINTS

5493:
5494: -- Cursor to fetch primary contact points for party
5495: CURSOR c_cpts(cp_contact_point_id NUMBER) IS
5496: SELECT contact_point_id, contact_point_type
5497: FROM HZ_CONTACT_POINTS
5498: WHERE contact_point_id = cp_contact_point_id;
5499:
5500: I NUMBER;
5501: l_contact_point_id NUMBER;