DBA Data[Home] [Help]

APPS.HZ_MATCH_RULE_62 dependencies on HZ_CONTACT_POINTS

Line 565: FROM HZ_CONTACT_POINTS

561: END IF;
562: IF p_attribute = 'URL' THEN
563: BEGIN
564: SELECT URL INTO l_matched_value
565: FROM HZ_CONTACT_POINTS
566: WHERE contact_point_id = p_record_id and rownum=1;
567: EXCEPTION
568: WHEN NO_DATA_FOUND THEN
569: l_matched_value := 'Err';

Line 4738: from hz_contact_points

4734: p_party_site_list HZ_PARTY_SEARCH.IDList;
4735: p_contact_ids HZ_PARTY_SEARCH.IDList;
4736: l_match_idx NUMBER;
4737: cursor get_cpts_for_party_sites is select contact_point_id
4738: from hz_contact_points
4739: where owner_table_name = 'HZ_PARTY_SITES'
4740: and primary_flag='Y'
4741: and owner_table_id = p_party_site_id;
4742: BEGIN

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

4819: p_party_site_list HZ_PARTY_SEARCH.IDList;
4820: p_contact_ids HZ_PARTY_SEARCH.IDList;
4821: l_match_idx NUMBER;
4822: cursor get_cpt_for_contact_id is select contact_point_id
4823: from hz_org_contacts a, hz_relationships b, hz_contact_points c
4824: where a.party_relationship_id = b.relationship_id
4825: and c.owner_table_name = 'HZ_PARTIES'
4826: and c.primary_flag='Y'
4827: and c.owner_table_id = b.party_id

Line 6242: FROM HZ_CONTACT_POINTS

6238: ps:=ps+1;
6239: END LOOP;
6240: FOR CONTACT_POINTS IN (
6241: SELECT CONTACT_POINT_ID
6242: FROM HZ_CONTACT_POINTS
6243: WHERE PRIMARY_FLAG = 'Y'
6244: AND owner_table_name = 'HZ_PARTIES'
6245: AND owner_table_id = p_party_id
6246:

Line 6250: FROM HZ_CONTACT_POINTS,HZ_ORG_CONTACTS, HZ_RELATIONSHIPS

6246:
6247: UNION
6248:
6249: SELECT CONTACT_POINT_ID
6250: FROM HZ_CONTACT_POINTS,HZ_ORG_CONTACTS, HZ_RELATIONSHIPS
6251: WHERE PRIMARY_FLAG = 'Y'
6252: AND owner_table_name = 'HZ_PARTIES'
6253: AND OWNER_TABLE_ID = HZ_RELATIONSHIPS.party_id
6254: AND HZ_RELATIONSHIPS.object_id = p_party_id

Line 6263: FROM HZ_CONTACT_POINTS,HZ_PARTY_SITES

6259: AND ROWNUM<6
6260: UNION
6261:
6262: SELECT CONTACT_POINT_ID
6263: FROM HZ_CONTACT_POINTS,HZ_PARTY_SITES
6264: WHERE PRIMARY_FLAG = 'Y'
6265: AND owner_table_name = 'HZ_PARTY_SITES'
6266: AND owner_table_id = party_site_id
6267: AND PARTY_ID = p_party_id

Line 6533: ,translate(HZ_CONTACT_POINTS.URL, '%',' ')

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

Line 6534: FROM HZ_CONTACT_POINTS

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