DBA Data[Home] [Help]

APPS.HZ_MATCH_RULE_48 dependencies on HZ_CONTACT_POINTS

Line 4211: from hz_contact_points

4207: p_party_site_list HZ_PARTY_SEARCH.IDList;
4208: p_contact_ids HZ_PARTY_SEARCH.IDList;
4209: l_match_idx NUMBER;
4210: cursor get_cpts_for_party_sites is select contact_point_id
4211: from hz_contact_points
4212: where owner_table_name = 'HZ_PARTY_SITES'
4213: and primary_flag='Y'
4214: and owner_table_id = p_party_site_id;
4215: BEGIN

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

4292: p_party_site_list HZ_PARTY_SEARCH.IDList;
4293: p_contact_ids HZ_PARTY_SEARCH.IDList;
4294: l_match_idx NUMBER;
4295: cursor get_cpt_for_contact_id is select contact_point_id
4296: from hz_org_contacts a, hz_relationships b, hz_contact_points c
4297: where a.party_relationship_id = b.relationship_id
4298: and c.owner_table_name = 'HZ_PARTIES'
4299: and c.primary_flag='Y'
4300: and c.owner_table_id = b.party_id

Line 5851: FROM HZ_CONTACT_POINTS

5847:
5848: -- Cursor to fetch primary contact points for party
5849: CURSOR c_cpts(cp_contact_point_id NUMBER) IS
5850: SELECT contact_point_id, contact_point_type
5851: FROM HZ_CONTACT_POINTS
5852: WHERE contact_point_id = cp_contact_point_id;
5853:
5854: I NUMBER;
5855: l_contact_point_id NUMBER;