DBA Data[Home] [Help]

APPS.HZ_MATCH_RULE_39 dependencies on HZ_CONTACT_POINTS

Line 4009: from hz_contact_points

4005: p_party_site_list HZ_PARTY_SEARCH.IDList;
4006: p_contact_ids HZ_PARTY_SEARCH.IDList;
4007: l_match_idx NUMBER;
4008: cursor get_cpts_for_party_sites is select contact_point_id
4009: from hz_contact_points
4010: where owner_table_name = 'HZ_PARTY_SITES'
4011: and primary_flag='Y'
4012: and owner_table_id = p_party_site_id;
4013: BEGIN

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

4090: p_party_site_list HZ_PARTY_SEARCH.IDList;
4091: p_contact_ids HZ_PARTY_SEARCH.IDList;
4092: l_match_idx NUMBER;
4093: cursor get_cpt_for_contact_id is select contact_point_id
4094: from hz_org_contacts a, hz_relationships b, hz_contact_points c
4095: where a.party_relationship_id = b.relationship_id
4096: and c.owner_table_name = 'HZ_PARTIES'
4097: and c.primary_flag='Y'
4098: and c.owner_table_id = b.party_id

Line 5620: FROM HZ_CONTACT_POINTS

5616:
5617: -- Cursor to fetch primary contact points for party
5618: CURSOR c_cpts(cp_contact_point_id NUMBER) IS
5619: SELECT contact_point_id, contact_point_type
5620: FROM HZ_CONTACT_POINTS
5621: WHERE contact_point_id = cp_contact_point_id;
5622:
5623: I NUMBER;
5624: l_contact_point_id NUMBER;