DBA Data[Home] [Help]

APPS.HZ_MATCH_RULE_53 dependencies on HZ_CONTACT_POINTS

Line 4495: from hz_contact_points

4491: p_party_site_list HZ_PARTY_SEARCH.IDList;
4492: p_contact_ids HZ_PARTY_SEARCH.IDList;
4493: l_match_idx NUMBER;
4494: cursor get_cpts_for_party_sites is select contact_point_id
4495: from hz_contact_points
4496: where owner_table_name = 'HZ_PARTY_SITES'
4497: and primary_flag='Y'
4498: and owner_table_id = p_party_site_id;
4499: BEGIN

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

4576: p_party_site_list HZ_PARTY_SEARCH.IDList;
4577: p_contact_ids HZ_PARTY_SEARCH.IDList;
4578: l_match_idx NUMBER;
4579: cursor get_cpt_for_contact_id is select contact_point_id
4580: from hz_org_contacts a, hz_relationships b, hz_contact_points c
4581: where a.party_relationship_id = b.relationship_id
4582: and c.owner_table_name = 'HZ_PARTIES'
4583: and c.primary_flag='Y'
4584: and c.owner_table_id = b.party_id

Line 6169: FROM HZ_CONTACT_POINTS

6165:
6166: -- Cursor to fetch primary contact points for party
6167: CURSOR c_cpts(cp_contact_point_id NUMBER) IS
6168: SELECT contact_point_id, contact_point_type
6169: FROM HZ_CONTACT_POINTS
6170: WHERE contact_point_id = cp_contact_point_id;
6171:
6172: I NUMBER;
6173: l_contact_point_id NUMBER;