DBA Data[Home] [Help]

APPS.HZ_MATCH_RULE_61 dependencies on HZ_CONTACT_POINTS

Line 404: FROM HZ_CONTACT_POINTS

400: IF p_entity = 'CONTACT_POINTS' THEN
401: IF p_attribute = 'URL' THEN
402: BEGIN
403: SELECT URL INTO l_matched_value
404: FROM HZ_CONTACT_POINTS
405: WHERE contact_point_id = p_record_id and rownum=1;
406: EXCEPTION
407: WHEN NO_DATA_FOUND THEN
408: l_matched_value := 'Err';

Line 4229: from hz_contact_points

4225: p_party_site_list HZ_PARTY_SEARCH.IDList;
4226: p_contact_ids HZ_PARTY_SEARCH.IDList;
4227: l_match_idx NUMBER;
4228: cursor get_cpts_for_party_sites is select contact_point_id
4229: from hz_contact_points
4230: where owner_table_name = 'HZ_PARTY_SITES'
4231: and primary_flag='Y'
4232: and owner_table_id = p_party_site_id;
4233: BEGIN

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

4310: p_party_site_list HZ_PARTY_SEARCH.IDList;
4311: p_contact_ids HZ_PARTY_SEARCH.IDList;
4312: l_match_idx NUMBER;
4313: cursor get_cpt_for_contact_id is select contact_point_id
4314: from hz_org_contacts a, hz_relationships b, hz_contact_points c
4315: where a.party_relationship_id = b.relationship_id
4316: and c.owner_table_name = 'HZ_PARTIES'
4317: and c.primary_flag='Y'
4318: and c.owner_table_id = b.party_id

Line 5589: FROM HZ_CONTACT_POINTS

5585: END IF;
5586: l_party_id := p_party_id;
5587: FOR CONTACT_POINTS IN (
5588: SELECT CONTACT_POINT_ID
5589: FROM HZ_CONTACT_POINTS
5590: WHERE PRIMARY_FLAG = 'Y'
5591: AND owner_table_name = 'HZ_PARTIES'
5592: AND owner_table_id = p_party_id
5593:

Line 5597: FROM HZ_CONTACT_POINTS,HZ_ORG_CONTACTS, HZ_RELATIONSHIPS

5593:
5594: UNION
5595:
5596: SELECT CONTACT_POINT_ID
5597: FROM HZ_CONTACT_POINTS,HZ_ORG_CONTACTS, HZ_RELATIONSHIPS
5598: WHERE PRIMARY_FLAG = 'Y'
5599: AND owner_table_name = 'HZ_PARTIES'
5600: AND OWNER_TABLE_ID = HZ_RELATIONSHIPS.party_id
5601: AND HZ_RELATIONSHIPS.object_id = p_party_id

Line 5610: FROM HZ_CONTACT_POINTS,HZ_PARTY_SITES

5606: AND ROWNUM<6
5607: UNION
5608:
5609: SELECT CONTACT_POINT_ID
5610: FROM HZ_CONTACT_POINTS,HZ_PARTY_SITES
5611: WHERE PRIMARY_FLAG = 'Y'
5612: AND owner_table_name = 'HZ_PARTY_SITES'
5613: AND owner_table_id = party_site_id
5614: AND PARTY_ID = p_party_id

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

5858:
5859: -- Cursor to fetch primary contact points for party
5860: CURSOR c_cpts(cp_contact_point_id NUMBER) IS
5861: SELECT contact_point_id, contact_point_type
5862: ,translate(HZ_CONTACT_POINTS.URL, '%',' ')
5863: FROM HZ_CONTACT_POINTS
5864: WHERE contact_point_id = cp_contact_point_id;
5865:
5866: I NUMBER;

Line 5863: FROM HZ_CONTACT_POINTS

5859: -- Cursor to fetch primary contact points for party
5860: CURSOR c_cpts(cp_contact_point_id NUMBER) IS
5861: SELECT contact_point_id, contact_point_type
5862: ,translate(HZ_CONTACT_POINTS.URL, '%',' ')
5863: FROM HZ_CONTACT_POINTS
5864: WHERE contact_point_id = cp_contact_point_id;
5865:
5866: I NUMBER;
5867: l_contact_point_id NUMBER;