Search Results hz_contact_points
Overview
The HZ_CONTACT_POINTS table is a core component of the Oracle Trading Community Architecture (TCA) within Oracle E-Business Suite (EBS) versions 12.1.1 and 12.2.2. It serves as the central repository for storing all electronic communication methods associated with parties, party sites, and other entities in the system. As defined in the ETRM, its primary role is to manage "Electronic methods of communicating with parties." This table enables the standardized storage of diverse contact point types—such as phone numbers, email addresses, fax numbers, and web addresses—for customers, suppliers, partners, and other parties, providing a unified model for contact information across all EBS modules.
Key Information Stored
The table's primary key is CONTACT_POINT_ID, which uniquely identifies each contact record. A critical design aspect is the OWNER_TABLE_ID and OWNER_TABLE_NAME columns, which implement a polymorphic foreign key relationship. This allows a contact point to be owned by various entities, most commonly a party (HZ_PARTIES) or a party site (HZ_PARTY_SITES), as indicated by the documented foreign keys. Key columns include CONTACT_POINT_TYPE (e.g., 'PHONE', 'EMAIL', 'FAX'), PHONE_COUNTRY_CODE, PHONE_AREA_CODE, PHONE_NUMBER, EMAIL_ADDRESS, and URL. The STATUS column indicates if the contact point is 'A'ctive or 'I'nactive, and the PRIMARY_FLAG designates the preferred contact method of its type. The table also links to HZ_TIMEZONES via the TIMEZONE_ID foreign key for proper time zone management.
Common Use Cases and Queries
A primary use case is retrieving all active contact points for a specific customer party. This is essential for customer communications, support interactions, and marketing. Another common scenario involves identifying the primary phone or email for a bill-to or ship-to location (party site) for order fulfillment or shipping notifications. Developers often query this table to populate contact information in custom reports or interfaces.
Sample SQL to fetch phone contacts for a party:
- SELECT cp.phone_country_code, cp.phone_area_code, cp.phone_number, cp.primary_flag
- FROM hz_contact_points cp
- WHERE cp.owner_table_name = 'HZ_PARTIES'
- AND cp.owner_table_id = :p_party_id
- AND cp.contact_point_type = 'PHONE'
- AND cp.status = 'A'
- ORDER BY cp.primary_flag DESC, cp.last_update_date DESC;
Integration points, as shown in the metadata, are extensive, including Service Requests (CS_INCIDENTS_ALL_B), Sales Leads (AS_SALES_LEADS), and Order Management interfaces (OE_HEADERS_IFACE_ALL).
Related Objects
HZ_CONTACT_POINTS is deeply integrated into the TCA model and numerous application modules. Its primary relationships, as documented, are with the HZ_PARTIES and HZ_PARTY_SITES tables, which are the most common owners of contact points. The HZ_TIMEZONES table is a direct foreign key reference. Crucially, the ETRM metadata lists over a dozen foreign key relationships from application tables, demonstrating its enterprise-wide usage. Key referencing objects include AR_CUSTOMER_CALLS_ALL (for call logging), CS_INCIDENTS_ALL_B (for service request customer contact info), AS_SALES_LEADS (for lead contact details), and JTF_TASK_PHONES (for task management). This wide integration underscores that HZ_CONTACT_POINTS is the definitive source for electronic contact data across Oracle EBS.
-
Table: HZ_CONTACT_POINTS
12.2.2
owner:AR, object_type:TABLE, fnd_design_data:AR.HZ_CONTACT_POINTS, object_name:HZ_CONTACT_POINTS, status:VALID, product: AR - Receivables , description: Electronic methods of communicating with parties , implementation_dba_data: AR.HZ_CONTACT_POINTS ,
-
Table: HZ_CONTACT_POINTS
12.1.1
owner:AR, object_type:TABLE, fnd_design_data:AR.HZ_CONTACT_POINTS, object_name:HZ_CONTACT_POINTS, status:VALID, product: AR - Receivables , description: Electronic methods of communicating with parties , implementation_dba_data: AR.HZ_CONTACT_POINTS ,
-
Lookup Type: SUBJECT_TABLE
12.2.2
product: AR - Receivables , meaning: Subject Table , description: Subject Type ,
-
Lookup Type: SUBJECT_TABLE
12.1.1
product: AR - Receivables , meaning: Subject Table , description: Subject Type ,
-
View: AR_CBA_BANK_ACCOUNT_CONTACTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AR.AR_CBA_BANK_ACCOUNT_CONTACTS_V, object_name:AR_CBA_BANK_ACCOUNT_CONTACTS_V, status:VALID, product: AR - Receivables , description: (Release 11.6 Only) , implementation_dba_data: APPS.AR_CBA_BANK_ACCOUNT_CONTACTS_V ,
-
View: AR_CBA_BANK_BRANCH_CONTACTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AR.AR_CBA_BANK_BRANCH_CONTACTS_V, object_name:AR_CBA_BANK_BRANCH_CONTACTS_V, status:VALID, product: AR - Receivables , description: (Release 11.6 Only) , implementation_dba_data: APPS.AR_CBA_BANK_BRANCH_CONTACTS_V ,
-
View: AR_CBA_BANK_BRANCH_CONTACTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AR.AR_CBA_BANK_BRANCH_CONTACTS_V, object_name:AR_CBA_BANK_BRANCH_CONTACTS_V, status:VALID, product: AR - Receivables , description: (Release 11.6 Only) , implementation_dba_data: APPS.AR_CBA_BANK_BRANCH_CONTACTS_V ,
-
View: AR_CBA_BANK_ACCOUNT_CONTACTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AR.AR_CBA_BANK_ACCOUNT_CONTACTS_V, object_name:AR_CBA_BANK_ACCOUNT_CONTACTS_V, status:VALID, product: AR - Receivables , description: (Release 11.6 Only) , implementation_dba_data: APPS.AR_CBA_BANK_ACCOUNT_CONTACTS_V ,
-
Table: AR_CUSTOMER_CALLS_ALL
12.1.1
owner:AR, object_type:TABLE, fnd_design_data:AR.AR_CUSTOMER_CALLS_ALL, object_name:AR_CUSTOMER_CALLS_ALL, status:VALID, product: AR - Receivables , description: Customer call information , implementation_dba_data: AR.AR_CUSTOMER_CALLS_ALL ,
-
Table: AR_CUSTOMER_CALLS_ALL
12.2.2
owner:AR, object_type:TABLE, fnd_design_data:AR.AR_CUSTOMER_CALLS_ALL, object_name:AR_CUSTOMER_CALLS_ALL, status:VALID, product: AR - Receivables , description: Customer call information , implementation_dba_data: AR.AR_CUSTOMER_CALLS_ALL ,
-
Lookup Type: TCA_OWNER_TABLE
12.1.1
product: AR - Receivables , meaning: TCA Owner Tables , description: TCA Owner Tables ,
-
Lookup Type: TCA_OWNER_TABLE
12.2.2
product: AR - Receivables , meaning: TCA Owner Tables , description: TCA Owner Tables ,
-
Table: HZ_IMP_CONTACTPTS_INT
12.1.1
owner:AR, object_type:TABLE, fnd_design_data:AR.HZ_IMP_CONTACTPTS_INT, object_name:HZ_IMP_CONTACTPTS_INT, status:VALID, product: AR - Receivables , description: TCA import table for HZ_CONTACT_POINTS , implementation_dba_data: AR.HZ_IMP_CONTACTPTS_INT ,
-
Table: HZ_IMP_CONTACTPTS_INT
12.2.2
owner:AR, object_type:TABLE, fnd_design_data:AR.HZ_IMP_CONTACTPTS_INT, object_name:HZ_IMP_CONTACTPTS_INT, status:VALID, product: AR - Receivables , description: TCA import table for HZ_CONTACT_POINTS , implementation_dba_data: AR.HZ_IMP_CONTACTPTS_INT ,
-
View: AR_CBA_EFT_USER_NUMBER_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AR.AR_CBA_EFT_USER_NUMBER_V, object_name:AR_CBA_EFT_USER_NUMBER_V, status:VALID, product: AR - Receivables , description: (Release 11.6 Only) , implementation_dba_data: APPS.AR_CBA_EFT_USER_NUMBER_V ,
-
View: AR_CBA_EFT_USER_NUMBER_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AR.AR_CBA_EFT_USER_NUMBER_V, object_name:AR_CBA_EFT_USER_NUMBER_V, status:VALID, product: AR - Receivables , description: (Release 11.6 Only) , implementation_dba_data: APPS.AR_CBA_EFT_USER_NUMBER_V ,
-
View: AR_PHONES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AR.AR_PHONES_V, object_name:AR_PHONES_V, status:VALID, product: AR - Receivables , description: (Release 115 Only) , implementation_dba_data: APPS.AR_PHONES_V ,
-
Table: HZ_TIMEZONES
12.1.1
owner:AR, object_type:TABLE, fnd_design_data:AR.HZ_TIMEZONES, object_name:HZ_TIMEZONES, status:VALID, product: AR - Receivables , description: Time zone information , implementation_dba_data: AR.HZ_TIMEZONES ,
-
View: AR_PHONES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AR.AR_PHONES_V, object_name:AR_PHONES_V, status:VALID, product: AR - Receivables , description: (Release 115 Only) , implementation_dba_data: APPS.AR_PHONES_V ,
-
Table: AR_CUSTOMER_CALL_TOPICS_ALL
12.1.1
owner:AR, object_type:TABLE, fnd_design_data:AR.AR_CUSTOMER_CALL_TOPICS_ALL, object_name:AR_CUSTOMER_CALL_TOPICS_ALL, status:VALID, product: AR - Receivables , description: Topic of a customer call , implementation_dba_data: AR.AR_CUSTOMER_CALL_TOPICS_ALL ,
-
Table: AR_CUSTOMER_CALL_TOPICS_ALL
12.2.2
owner:AR, object_type:TABLE, fnd_design_data:AR.AR_CUSTOMER_CALL_TOPICS_ALL, object_name:AR_CUSTOMER_CALL_TOPICS_ALL, status:VALID, product: AR - Receivables , description: Topic of a customer call , implementation_dba_data: AR.AR_CUSTOMER_CALL_TOPICS_ALL ,
-
Table: HZ_TIMEZONES
12.2.2
owner:AR, object_type:TABLE, fnd_design_data:AR.HZ_TIMEZONES, object_name:HZ_TIMEZONES, status:VALID, product: AR - Receivables , description: Time zone information , implementation_dba_data: AR.HZ_TIMEZONES ,
-
View: HZ_DQM_CS_CPT_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AR.HZ_DQM_CS_CPT_V, object_name:HZ_DQM_CS_CPT_V, status:VALID, product: AR - Receivables , implementation_dba_data: APPS.HZ_DQM_CS_CPT_V ,
-
View: HZ_DQM_CS_CPT_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AR.HZ_DQM_CS_CPT_V, object_name:HZ_DQM_CS_CPT_V, status:VALID, product: AR - Receivables , implementation_dba_data: APPS.HZ_DQM_CS_CPT_V ,
-
View: HZ_DQM_CPTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AR.HZ_DQM_CPTS_V, object_name:HZ_DQM_CPTS_V, status:VALID, product: AR - Receivables , implementation_dba_data: APPS.HZ_DQM_CPTS_V ,
-
View: HZ_CONTACT_RESTRICTIONS
12.1.1
product: AR - Receivables , implementation_dba_data: Not implemented in this database ,
-
View: HZ_DQM_CPTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AR.HZ_DQM_CPTS_V, object_name:HZ_DQM_CPTS_V, status:VALID, product: AR - Receivables , implementation_dba_data: APPS.HZ_DQM_CPTS_V ,
-
Lookup Type: ENTITY_NAME
12.2.2
product: AR - Receivables , meaning: ENTITY_NAME , description: Entities that are supported by lead import to capture flex field info ,
-
Lookup Type: ENTITY_NAME
12.1.1
product: AR - Receivables , meaning: ENTITY_NAME , description: Entities that are supported by lead import to capture flex field info ,
-
View: HZ_CONTACT_RESTRICTIONS
12.2.2
product: AR - Receivables , implementation_dba_data: Not implemented in this database ,
-
View: HZ_DQM_PARTY_CPT_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AR.HZ_DQM_PARTY_CPT_V, object_name:HZ_DQM_PARTY_CPT_V, status:VALID, product: AR - Receivables , implementation_dba_data: APPS.HZ_DQM_PARTY_CPT_V ,
-
View: HZ_DQM_PS_CPT_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AR.HZ_DQM_PS_CPT_V, object_name:HZ_DQM_PS_CPT_V, status:VALID, product: AR - Receivables , implementation_dba_data: APPS.HZ_DQM_PS_CPT_V ,
-
View: HZ_DQM_PS_CPT_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AR.HZ_DQM_PS_CPT_V, object_name:HZ_DQM_PS_CPT_V, status:VALID, product: AR - Receivables , implementation_dba_data: APPS.HZ_DQM_PS_CPT_V ,
-
View: HZ_DQM_PARTY_CPT_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AR.HZ_DQM_PARTY_CPT_V, object_name:HZ_DQM_PARTY_CPT_V, status:VALID, product: AR - Receivables , implementation_dba_data: APPS.HZ_DQM_PARTY_CPT_V ,
-
View: HZ_GROUP_WF_ROLES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AR.HZ_GROUP_WF_ROLES_V, object_name:HZ_GROUP_WF_ROLES_V, status:VALID, product: AR - Receivables , implementation_dba_data: APPS.HZ_GROUP_WF_ROLES_V ,
-
View: HZ_GROUP_WF_ROLES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AR.HZ_GROUP_WF_ROLES_V, object_name:HZ_GROUP_WF_ROLES_V, status:VALID, product: AR - Receivables , implementation_dba_data: APPS.HZ_GROUP_WF_ROLES_V ,
-
View: RA_HPHONES
12.2.2
product: AR - Receivables , implementation_dba_data: Not implemented in this database ,
-
View: AR_CUSTOMER_CONTACT_FIND_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AR.AR_CUSTOMER_CONTACT_FIND_V, object_name:AR_CUSTOMER_CONTACT_FIND_V, status:VALID, product: AR - Receivables , implementation_dba_data: APPS.AR_CUSTOMER_CONTACT_FIND_V ,
-
View: HZ_DQM_ORG_CONTACT_INFO_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AR.HZ_DQM_ORG_CONTACT_INFO_V, object_name:HZ_DQM_ORG_CONTACT_INFO_V, status:VALID, product: AR - Receivables , implementation_dba_data: APPS.HZ_DQM_ORG_CONTACT_INFO_V ,
-
View: RA_HPHONES
12.1.1
product: AR - Receivables , implementation_dba_data: Not implemented in this database ,
-
View: AR_CUSTOMER_CALLS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AR.AR_CUSTOMER_CALLS_V, object_name:AR_CUSTOMER_CALLS_V, status:VALID, product: AR - Receivables , description: (Release 11.5 Only) , implementation_dba_data: APPS.AR_CUSTOMER_CALLS_V ,
-
View: AR_CUSTOMER_CALLS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AR.AR_CUSTOMER_CALLS_V, object_name:AR_CUSTOMER_CALLS_V, status:VALID, product: AR - Receivables , description: (Release 11.5 Only) , implementation_dba_data: APPS.AR_CUSTOMER_CALLS_V ,
-
View: AR_CUSTOMER_CONTACT_FIND_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AR.AR_CUSTOMER_CONTACT_FIND_V, object_name:AR_CUSTOMER_CONTACT_FIND_V, status:VALID, product: AR - Receivables , implementation_dba_data: APPS.AR_CUSTOMER_CONTACT_FIND_V ,
-
View: HZ_DQM_ORG_CONTACT_INFO_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AR.HZ_DQM_ORG_CONTACT_INFO_V, object_name:HZ_DQM_ORG_CONTACT_INFO_V, status:VALID, product: AR - Receivables , implementation_dba_data: APPS.HZ_DQM_ORG_CONTACT_INFO_V ,
-
View: HZ_CONTACT_FIND_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AR.HZ_CONTACT_FIND_V, object_name:HZ_CONTACT_FIND_V, status:VALID, product: AR - Receivables , implementation_dba_data: APPS.HZ_CONTACT_FIND_V ,
-
View: HZ_CONTACT_FIND_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AR.HZ_CONTACT_FIND_V, object_name:HZ_CONTACT_FIND_V, status:VALID, product: AR - Receivables , implementation_dba_data: APPS.HZ_CONTACT_FIND_V ,
-
View: HZ_PARTY_WF_ROLES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AR.HZ_PARTY_WF_ROLES_V, object_name:HZ_PARTY_WF_ROLES_V, status:VALID, product: AR - Receivables , implementation_dba_data: APPS.HZ_PARTY_WF_ROLES_V ,
-
View: HZ_PARTY_WF_ROLES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AR.HZ_PARTY_WF_ROLES_V, object_name:HZ_PARTY_WF_ROLES_V, status:VALID, product: AR - Receivables , implementation_dba_data: APPS.HZ_PARTY_WF_ROLES_V ,
-
View: HZ_PARTY_CONTACT_POINTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AR.HZ_PARTY_CONTACT_POINTS_V, object_name:HZ_PARTY_CONTACT_POINTS_V, status:VALID, product: AR - Receivables , implementation_dba_data: APPS.HZ_PARTY_CONTACT_POINTS_V ,
-
View: HZ_ORG_CONTACTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AR.HZ_ORG_CONTACTS_V, object_name:HZ_ORG_CONTACTS_V, status:VALID, product: AR - Receivables , implementation_dba_data: APPS.HZ_ORG_CONTACTS_V ,