DBA Data[Home] [Help]

APPS.HZ_MATCH_RULE_35 dependencies on HZ_CONTACT_POINTS

Line 4357: from hz_contact_points

4353: p_party_site_list HZ_PARTY_SEARCH.IDList;
4354: p_contact_ids HZ_PARTY_SEARCH.IDList;
4355: l_match_idx NUMBER;
4356: cursor get_cpts_for_party_sites is select contact_point_id
4357: from hz_contact_points
4358: where owner_table_name = 'HZ_PARTY_SITES'
4359: and primary_flag='Y'
4360: and owner_table_id = p_party_site_id;
4361: BEGIN

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

4438: p_party_site_list HZ_PARTY_SEARCH.IDList;
4439: p_contact_ids HZ_PARTY_SEARCH.IDList;
4440: l_match_idx NUMBER;
4441: cursor get_cpt_for_contact_id is select contact_point_id
4442: from hz_org_contacts a, hz_relationships b, hz_contact_points c
4443: where a.party_relationship_id = b.relationship_id
4444: and c.owner_table_name = 'HZ_PARTIES'
4445: and c.primary_flag='Y'
4446: and c.owner_table_id = b.party_id

Line 6005: FROM HZ_CONTACT_POINTS

6001:
6002: -- Cursor to fetch primary contact points for party
6003: CURSOR c_cpts(cp_contact_point_id NUMBER) IS
6004: SELECT contact_point_id, contact_point_type
6005: FROM HZ_CONTACT_POINTS
6006: WHERE contact_point_id = cp_contact_point_id;
6007:
6008: I NUMBER;
6009: l_contact_point_id NUMBER;