DBA Data[Home] [Help]

APPS.HZ_MATCH_RULE_33 dependencies on HZ_CONTACT_POINTS

Line 542: FROM HZ_CONTACT_POINTS

538: END IF;
539: IF p_attribute = 'EMAIL_ADDRESS' THEN
540: BEGIN
541: SELECT EMAIL_ADDRESS INTO l_matched_value
542: FROM HZ_CONTACT_POINTS
543: WHERE contact_point_id = p_record_id and rownum=1;
544: EXCEPTION
545: WHEN NO_DATA_FOUND THEN
546: l_matched_value := 'Err';

Line 4718: from hz_contact_points

4714: p_party_site_list HZ_PARTY_SEARCH.IDList;
4715: p_contact_ids HZ_PARTY_SEARCH.IDList;
4716: l_match_idx NUMBER;
4717: cursor get_cpts_for_party_sites is select contact_point_id
4718: from hz_contact_points
4719: where owner_table_name = 'HZ_PARTY_SITES'
4720: and primary_flag='Y'
4721: and owner_table_id = p_party_site_id;
4722: BEGIN

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

4799: p_party_site_list HZ_PARTY_SEARCH.IDList;
4800: p_contact_ids HZ_PARTY_SEARCH.IDList;
4801: l_match_idx NUMBER;
4802: cursor get_cpt_for_contact_id is select contact_point_id
4803: from hz_org_contacts a, hz_relationships b, hz_contact_points c
4804: where a.party_relationship_id = b.relationship_id
4805: and c.owner_table_name = 'HZ_PARTIES'
4806: and c.primary_flag='Y'
4807: and c.owner_table_id = b.party_id

Line 6236: FROM HZ_CONTACT_POINTS

6232: ct := ct+1;
6233: END LOOP;
6234: FOR CONTACT_POINTS IN (
6235: SELECT CONTACT_POINT_ID
6236: FROM HZ_CONTACT_POINTS
6237: WHERE PRIMARY_FLAG = 'Y'
6238: AND owner_table_name = 'HZ_PARTIES'
6239: AND owner_table_id = p_party_id
6240:

Line 6244: FROM HZ_CONTACT_POINTS,HZ_ORG_CONTACTS, HZ_RELATIONSHIPS

6240:
6241: UNION
6242:
6243: SELECT CONTACT_POINT_ID
6244: FROM HZ_CONTACT_POINTS,HZ_ORG_CONTACTS, HZ_RELATIONSHIPS
6245: WHERE PRIMARY_FLAG = 'Y'
6246: AND owner_table_name = 'HZ_PARTIES'
6247: AND OWNER_TABLE_ID = HZ_RELATIONSHIPS.party_id
6248: AND HZ_RELATIONSHIPS.object_id = p_party_id

Line 6257: FROM HZ_CONTACT_POINTS,HZ_PARTY_SITES

6253: AND ROWNUM<6
6254: UNION
6255:
6256: SELECT CONTACT_POINT_ID
6257: FROM HZ_CONTACT_POINTS,HZ_PARTY_SITES
6258: WHERE PRIMARY_FLAG = 'Y'
6259: AND owner_table_name = 'HZ_PARTY_SITES'
6260: AND owner_table_id = party_site_id
6261: AND PARTY_ID = p_party_id

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

6527:
6528: -- Cursor to fetch primary contact points for party
6529: CURSOR c_cpts(cp_contact_point_id NUMBER) IS
6530: SELECT contact_point_id, contact_point_type
6531: ,translate(HZ_CONTACT_POINTS.EMAIL_ADDRESS, '%',' ')
6532: FROM HZ_CONTACT_POINTS
6533: WHERE contact_point_id = cp_contact_point_id;
6534:
6535: I NUMBER;

Line 6532: FROM HZ_CONTACT_POINTS

6528: -- Cursor to fetch primary contact points for party
6529: CURSOR c_cpts(cp_contact_point_id NUMBER) IS
6530: SELECT contact_point_id, contact_point_type
6531: ,translate(HZ_CONTACT_POINTS.EMAIL_ADDRESS, '%',' ')
6532: FROM HZ_CONTACT_POINTS
6533: WHERE contact_point_id = cp_contact_point_id;
6534:
6535: I NUMBER;
6536: l_contact_point_id NUMBER;