DBA Data[Home] [Help]

APPS.HZ_MATCH_RULE_60 dependencies on HZ_CONTACT_POINTS

Line 562: FROM HZ_CONTACT_POINTS

558: END IF;
559: IF p_attribute = 'EMAIL_ADDRESS' THEN
560: BEGIN
561: SELECT EMAIL_ADDRESS INTO l_matched_value
562: FROM HZ_CONTACT_POINTS
563: WHERE contact_point_id = p_record_id and rownum=1;
564: EXCEPTION
565: WHEN NO_DATA_FOUND THEN
566: l_matched_value := 'Err';

Line 4749: from hz_contact_points

4745: p_party_site_list HZ_PARTY_SEARCH.IDList;
4746: p_contact_ids HZ_PARTY_SEARCH.IDList;
4747: l_match_idx NUMBER;
4748: cursor get_cpts_for_party_sites is select contact_point_id
4749: from hz_contact_points
4750: where owner_table_name = 'HZ_PARTY_SITES'
4751: and primary_flag='Y'
4752: and owner_table_id = p_party_site_id;
4753: BEGIN

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

4830: p_party_site_list HZ_PARTY_SEARCH.IDList;
4831: p_contact_ids HZ_PARTY_SEARCH.IDList;
4832: l_match_idx NUMBER;
4833: cursor get_cpt_for_contact_id is select contact_point_id
4834: from hz_org_contacts a, hz_relationships b, hz_contact_points c
4835: where a.party_relationship_id = b.relationship_id
4836: and c.owner_table_name = 'HZ_PARTIES'
4837: and c.primary_flag='Y'
4838: and c.owner_table_id = b.party_id

Line 6269: FROM HZ_CONTACT_POINTS

6265: ct := ct+1;
6266: END LOOP;
6267: FOR CONTACT_POINTS IN (
6268: SELECT CONTACT_POINT_ID
6269: FROM HZ_CONTACT_POINTS
6270: WHERE PRIMARY_FLAG = 'Y'
6271: AND owner_table_name = 'HZ_PARTIES'
6272: AND owner_table_id = p_party_id
6273:

Line 6277: FROM HZ_CONTACT_POINTS,HZ_ORG_CONTACTS, HZ_RELATIONSHIPS

6273:
6274: UNION
6275:
6276: SELECT CONTACT_POINT_ID
6277: FROM HZ_CONTACT_POINTS,HZ_ORG_CONTACTS, HZ_RELATIONSHIPS
6278: WHERE PRIMARY_FLAG = 'Y'
6279: AND owner_table_name = 'HZ_PARTIES'
6280: AND OWNER_TABLE_ID = HZ_RELATIONSHIPS.party_id
6281: AND HZ_RELATIONSHIPS.object_id = p_party_id

Line 6290: FROM HZ_CONTACT_POINTS,HZ_PARTY_SITES

6286: AND ROWNUM<6
6287: UNION
6288:
6289: SELECT CONTACT_POINT_ID
6290: FROM HZ_CONTACT_POINTS,HZ_PARTY_SITES
6291: WHERE PRIMARY_FLAG = 'Y'
6292: AND owner_table_name = 'HZ_PARTY_SITES'
6293: AND owner_table_id = party_site_id
6294: AND PARTY_ID = p_party_id

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

6562:
6563: -- Cursor to fetch primary contact points for party
6564: CURSOR c_cpts(cp_contact_point_id NUMBER) IS
6565: SELECT contact_point_id, contact_point_type
6566: ,translate(HZ_CONTACT_POINTS.EMAIL_ADDRESS, '%',' ')
6567: FROM HZ_CONTACT_POINTS
6568: WHERE contact_point_id = cp_contact_point_id;
6569:
6570: I NUMBER;

Line 6567: FROM HZ_CONTACT_POINTS

6563: -- Cursor to fetch primary contact points for party
6564: CURSOR c_cpts(cp_contact_point_id NUMBER) IS
6565: SELECT contact_point_id, contact_point_type
6566: ,translate(HZ_CONTACT_POINTS.EMAIL_ADDRESS, '%',' ')
6567: FROM HZ_CONTACT_POINTS
6568: WHERE contact_point_id = cp_contact_point_id;
6569:
6570: I NUMBER;
6571: l_contact_point_id NUMBER;