DBA Data[Home] [Help]

APPS.HZ_MATCH_RULE_41 dependencies on HZ_CONTACT_POINTS

Line 398: FROM HZ_CONTACT_POINTS

394: END IF;
395: IF p_attribute = 'EMAIL_ADDRESS' THEN
396: BEGIN
397: SELECT EMAIL_ADDRESS INTO l_matched_value
398: FROM HZ_CONTACT_POINTS
399: WHERE contact_point_id = p_record_id and rownum=1;
400: EXCEPTION
401: WHEN NO_DATA_FOUND THEN
402: l_matched_value := 'Err';

Line 4187: from hz_contact_points

4183: p_party_site_list HZ_PARTY_SEARCH.IDList;
4184: p_contact_ids HZ_PARTY_SEARCH.IDList;
4185: l_match_idx NUMBER;
4186: cursor get_cpts_for_party_sites is select contact_point_id
4187: from hz_contact_points
4188: where owner_table_name = 'HZ_PARTY_SITES'
4189: and primary_flag='Y'
4190: and owner_table_id = p_party_site_id;
4191: BEGIN

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

4268: p_party_site_list HZ_PARTY_SEARCH.IDList;
4269: p_contact_ids HZ_PARTY_SEARCH.IDList;
4270: l_match_idx NUMBER;
4271: cursor get_cpt_for_contact_id is select contact_point_id
4272: from hz_org_contacts a, hz_relationships b, hz_contact_points c
4273: where a.party_relationship_id = b.relationship_id
4274: and c.owner_table_name = 'HZ_PARTIES'
4275: and c.primary_flag='Y'
4276: and c.owner_table_id = b.party_id

Line 5609: FROM HZ_CONTACT_POINTS

5605: ps:=ps+1;
5606: END LOOP;
5607: FOR CONTACT_POINTS IN (
5608: SELECT CONTACT_POINT_ID
5609: FROM HZ_CONTACT_POINTS
5610: WHERE PRIMARY_FLAG = 'Y'
5611: AND owner_table_name = 'HZ_PARTIES'
5612: AND owner_table_id = p_party_id
5613:

Line 5617: FROM HZ_CONTACT_POINTS,HZ_ORG_CONTACTS, HZ_RELATIONSHIPS

5613:
5614: UNION
5615:
5616: SELECT CONTACT_POINT_ID
5617: FROM HZ_CONTACT_POINTS,HZ_ORG_CONTACTS, HZ_RELATIONSHIPS
5618: WHERE PRIMARY_FLAG = 'Y'
5619: AND owner_table_name = 'HZ_PARTIES'
5620: AND OWNER_TABLE_ID = HZ_RELATIONSHIPS.party_id
5621: AND HZ_RELATIONSHIPS.object_id = p_party_id

Line 5630: FROM HZ_CONTACT_POINTS,HZ_PARTY_SITES

5626: AND ROWNUM<6
5627: UNION
5628:
5629: SELECT CONTACT_POINT_ID
5630: FROM HZ_CONTACT_POINTS,HZ_PARTY_SITES
5631: WHERE PRIMARY_FLAG = 'Y'
5632: AND owner_table_name = 'HZ_PARTY_SITES'
5633: AND owner_table_id = party_site_id
5634: AND PARTY_ID = p_party_id

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

5882:
5883: -- Cursor to fetch primary contact points for party
5884: CURSOR c_cpts(cp_contact_point_id NUMBER) IS
5885: SELECT contact_point_id, contact_point_type
5886: ,translate(HZ_CONTACT_POINTS.EMAIL_ADDRESS, '%',' ')
5887: FROM HZ_CONTACT_POINTS
5888: WHERE contact_point_id = cp_contact_point_id;
5889:
5890: I NUMBER;

Line 5887: FROM HZ_CONTACT_POINTS

5883: -- Cursor to fetch primary contact points for party
5884: CURSOR c_cpts(cp_contact_point_id NUMBER) IS
5885: SELECT contact_point_id, contact_point_type
5886: ,translate(HZ_CONTACT_POINTS.EMAIL_ADDRESS, '%',' ')
5887: FROM HZ_CONTACT_POINTS
5888: WHERE contact_point_id = cp_contact_point_id;
5889:
5890: I NUMBER;
5891: l_contact_point_id NUMBER;