DBA Data[Home] [Help]

APPS.HZ_MATCH_RULE_32 dependencies on HZ_CONTACT_POINTS

Line 625: FROM HZ_CONTACT_POINTS

621: END IF;
622: IF p_attribute = 'EMAIL_ADDRESS' THEN
623: BEGIN
624: SELECT EMAIL_ADDRESS INTO l_matched_value
625: FROM HZ_CONTACT_POINTS
626: WHERE contact_point_id = p_record_id and rownum=1;
627: EXCEPTION
628: WHEN NO_DATA_FOUND THEN
629: l_matched_value := 'Err';

Line 4892: from hz_contact_points

4888: p_party_site_list HZ_PARTY_SEARCH.IDList;
4889: p_contact_ids HZ_PARTY_SEARCH.IDList;
4890: l_match_idx NUMBER;
4891: cursor get_cpts_for_party_sites is select contact_point_id
4892: from hz_contact_points
4893: where owner_table_name = 'HZ_PARTY_SITES'
4894: and primary_flag='Y'
4895: and owner_table_id = p_party_site_id;
4896: BEGIN

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

4973: p_party_site_list HZ_PARTY_SEARCH.IDList;
4974: p_contact_ids HZ_PARTY_SEARCH.IDList;
4975: l_match_idx NUMBER;
4976: cursor get_cpt_for_contact_id is select contact_point_id
4977: from hz_org_contacts a, hz_relationships b, hz_contact_points c
4978: where a.party_relationship_id = b.relationship_id
4979: and c.owner_table_name = 'HZ_PARTIES'
4980: and c.primary_flag='Y'
4981: and c.owner_table_id = b.party_id

Line 6429: FROM HZ_CONTACT_POINTS

6425: ct := ct+1;
6426: END LOOP;
6427: FOR CONTACT_POINTS IN (
6428: SELECT CONTACT_POINT_ID
6429: FROM HZ_CONTACT_POINTS
6430: WHERE PRIMARY_FLAG = 'Y'
6431: AND owner_table_name = 'HZ_PARTIES'
6432: AND owner_table_id = p_party_id
6433:

Line 6437: FROM HZ_CONTACT_POINTS,HZ_ORG_CONTACTS, HZ_RELATIONSHIPS

6433:
6434: UNION
6435:
6436: SELECT CONTACT_POINT_ID
6437: FROM HZ_CONTACT_POINTS,HZ_ORG_CONTACTS, HZ_RELATIONSHIPS
6438: WHERE PRIMARY_FLAG = 'Y'
6439: AND owner_table_name = 'HZ_PARTIES'
6440: AND OWNER_TABLE_ID = HZ_RELATIONSHIPS.party_id
6441: AND HZ_RELATIONSHIPS.object_id = p_party_id

Line 6450: FROM HZ_CONTACT_POINTS,HZ_PARTY_SITES

6446: AND ROWNUM<6
6447: UNION
6448:
6449: SELECT CONTACT_POINT_ID
6450: FROM HZ_CONTACT_POINTS,HZ_PARTY_SITES
6451: WHERE PRIMARY_FLAG = 'Y'
6452: AND owner_table_name = 'HZ_PARTY_SITES'
6453: AND owner_table_id = party_site_id
6454: AND PARTY_ID = p_party_id

Line 6734: ,translate(HZ_CONTACT_POINTS.EMAIL_ADDRESS, '%',' ')

6730:
6731: -- Cursor to fetch primary contact points for party
6732: CURSOR c_cpts(cp_contact_point_id NUMBER) IS
6733: SELECT contact_point_id, contact_point_type
6734: ,translate(HZ_CONTACT_POINTS.EMAIL_ADDRESS, '%',' ')
6735: FROM HZ_CONTACT_POINTS
6736: WHERE contact_point_id = cp_contact_point_id;
6737:
6738: I NUMBER;

Line 6735: FROM HZ_CONTACT_POINTS

6731: -- Cursor to fetch primary contact points for party
6732: CURSOR c_cpts(cp_contact_point_id NUMBER) IS
6733: SELECT contact_point_id, contact_point_type
6734: ,translate(HZ_CONTACT_POINTS.EMAIL_ADDRESS, '%',' ')
6735: FROM HZ_CONTACT_POINTS
6736: WHERE contact_point_id = cp_contact_point_id;
6737:
6738: I NUMBER;
6739: l_contact_point_id NUMBER;