Search Results oe_contacts_v
Overview
OE_CONTACTS_V is a reporting view owned by the APPS schema in Oracle E-Business Suite releases 12.1.1 and 12.2.2. It belongs to the ONT (Order Management) product family and, per the ETRM metadata, is based on the RA_CONTACTS lineage of data — though its actual view text reads primarily from the Oracle Trading Community Architecture (TCA) customer and relationship tables (HZ_*). The view exposes a flattened, denormalized representation of customer contacts associated with a customer account and account site, allowing Order Management and downstream reporting components to retrieve contact name, job title, status, and e-mail address without navigating the multi-table TCA model directly.
Functionally, the view acts as a convenience layer over the party-relationship model. Order Management uses contact information for tasks such as order acknowledgements, ship-to contact assignment, and sales-order-related communications. Because the view pre-joins the relationship directionality, role type, and e-mail resolution, consumers receive a single-row-per-contact result set suitable for LOV queries, concurrent-program extracts, and ad hoc operational reporting.
Underlying Base Objects
The documented referenced base objects (all exposed via synonyms owned by APPS) are:
- HZ_CUST_ACCOUNTS — customer account header, providing the CUST_ACCOUNT_ID against which roles and relationships are anchored.
- HZ_CUST_ACCOUNT_ROLES — the account role assignments, filtered to ROLE_TYPE = 'CONTACT' to isolate contacts for a customer account/site.
- HZ_ORG_CONTACTS — organization contact attributes, supplying job title (JOB_TITLE) via the party relationship identifier.
- HZ_PARTIES — the party master, used twice: once for the contact person (name construction) and once as the relationship party for e-mail resolution (REL_PARTY).
- HZ_RELATIONSHIPS — the relationship graph joining subject and object parties; the view restricts to SUBJECT_TABLE_NAME and OBJECT_TABLE_NAME of 'HZ_PARTIES' and DIRECTIONAL_FLAG = 'F'.
The joins enforce that a contact role, its relationship record, its organization contact detail, and the corresponding party e-mail all belong to the same directional relationship chain. The effective grain is one row per cust_account_role_id (exposed as CONTACT_ID).
Key Columns
- CONTACT_ID — sourced from ACCT_ROLE.CUST_ACCOUNT_ROLE_ID; the unique identifier of the contact role record and the natural primary key of the view row.
- ORG_ID — sourced from ACCT_ROLE.CUST_ACCT_SITE_ID, representing the customer account site (operating unit context is not implied here; the alias ORG_ID reflects the account-site identifier used by Order Management).
- CUSTOMER_ID — the CUST_ACCOUNT_ID linking the contact to its customer account.
- NAME — concatenation of PARTY.PERSON_LAST_NAME and PARTY.PERSON_FIRST_NAME in the form "Last, First".
- JOB_TITLE — from HZ_ORG_CONTACTS, the contact's title within the organization.
- STATUS — the role status from HZ_CUST_ACCOUNT_ROLES, indicating active/inactive role assignment.
- EMAIL_ADDRESS — the e-mail resolved from the relationship party (REL_PARTY).
Common Use Cases and Queries
Typical scenarios include resolving the primary contact for an order's ship-to site, populating contact LOVs in Order Management forms, and extracting contact lists for acknowledgement or notification programs.
SELECT contact_id,
org_id,
customer_id,
name,
job_title,
status,
email_address
FROM apps.oe_contacts_v
WHERE customer_id = :p_customer_id
AND status = 'A';
Order-site lookups join the view to order headers or ship-to sites on ORG_ID:
SELECT o.order_number,
c.name,
c.job_title,
c.email_address
FROM oe_order_headers_all o,
oe_contacts_v c
WHERE c.customer_id = o.customer_id
AND c.org_id = o.ship_to_org_id;
Because the view performs several inner joins across HZ tables, contacts lacking an organization contact record or a resolvable relationship party e-mail will not appear; queries requiring all contacts, including incomplete records, should be written against the base HZ tables directly.
-
View: OE_CONTACTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_CONTACTS_V, object_name:OE_CONTACTS_V, status:VALID, product: ONT - Order Management , description: This is view is based on ra_contacts , implementation_dba_data: APPS.OE_CONTACTS_V ,
-
View: OE_CONTACTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_CONTACTS_V, object_name:OE_CONTACTS_V, status:VALID, product: ONT - Order Management , description: This is view is based on ra_contacts , implementation_dba_data: APPS.OE_CONTACTS_V ,
-
PACKAGE: APPS.OE_OE_FORM_LINE
12.2.2
owner:APPS, object_type:PACKAGE, object_name:OE_OE_FORM_LINE, status:VALID,
-
PACKAGE: APPS.OE_OE_FORM_HEADER
12.2.2
owner:APPS, object_type:PACKAGE, object_name:OE_OE_FORM_HEADER, status:VALID,
-
PACKAGE BODY: APPS.QP_ID_TO_VALUE
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:QP_ID_TO_VALUE, status:VALID,
-
APPS.OE_ID_TO_VALUE SQL Statements
12.2.2
-
PACKAGE BODY: APPS.OE_CNCL_VALUE_TO_ID
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:OE_CNCL_VALUE_TO_ID, status:VALID,
-
PACKAGE BODY: APPS.QP_ID_TO_VALUE
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:QP_ID_TO_VALUE, status:VALID,
-
PACKAGE BODY: APPS.OE_ID_TO_VALUE
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:OE_ID_TO_VALUE, status:VALID,
-
PACKAGE BODY: APPS.OE_VALUE_TO_ID
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:OE_VALUE_TO_ID, status:VALID,
-
PACKAGE BODY: APPS.AHL_OSP_SHIPMENT_PUB
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:AHL_OSP_SHIPMENT_PUB, status:VALID,
-
PACKAGE BODY: APPS.OE_CNCL_VALUE_TO_ID
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:OE_CNCL_VALUE_TO_ID, status:VALID,
-
APPS.OE_ID_TO_VALUE SQL Statements
12.1.1
-
PACKAGE BODY: APPS.ONT_OEXOECOD_XMLP_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:ONT_OEXOECOD_XMLP_PKG, status:VALID,
-
PACKAGE BODY: APPS.ONT_OEXOECOD_XMLP_PKG
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:ONT_OEXOECOD_XMLP_PKG, status:VALID,
-
PACKAGE BODY: APPS.OE_BULK_VALUE_TO_ID
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:OE_BULK_VALUE_TO_ID, status:VALID,
-
PACKAGE BODY: APPS.OE_BULK_VALUE_TO_ID
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:OE_BULK_VALUE_TO_ID, status:VALID,
-
PACKAGE BODY: APPS.OE_VALUE_TO_ID
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:OE_VALUE_TO_ID, status:VALID,
-
PACKAGE BODY: APPS.OE_ID_TO_VALUE
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:OE_ID_TO_VALUE, status:VALID,
-
APPS.QP_ID_TO_VALUE SQL Statements
12.2.2
-
PACKAGE BODY: APPS.OE_OE_FORM_LINE
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:OE_OE_FORM_LINE, status:VALID,
-
PACKAGE BODY: APPS.AHL_OSP_SHIPMENT_PUB
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:AHL_OSP_SHIPMENT_PUB, status:VALID,
-
VIEW: APPS.OE_CONTACTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_CONTACTS_V, object_name:OE_CONTACTS_V, status:VALID,
-
PACKAGE BODY: APPS.OE_OE_FORM_HEADER
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:OE_OE_FORM_HEADER, status:VALID,
-
12.1.1 FND Design Data
12.1.1
-
VIEW: APPS.OE_CONTACTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_CONTACTS_V, object_name:OE_CONTACTS_V, status:VALID,
-
APPS.QP_ID_TO_VALUE SQL Statements
12.1.1
-
PACKAGE BODY: APPS.OE_OE_FORM_LINE
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:OE_OE_FORM_LINE, status:VALID,
-
PACKAGE BODY: APPS.OE_OE_FORM_HEADER
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:OE_OE_FORM_HEADER, status:VALID,
-
12.1.1 DBA Data
12.1.1
-
APPS.OE_CNCL_VALUE_TO_ID SQL Statements
12.1.1
-
APPS.OE_CNCL_VALUE_TO_ID SQL Statements
12.2.2
-
APPS.OE_VALUE_TO_ID SQL Statements
12.1.1
-
APPS.OE_VALUE_TO_ID SQL Statements
12.2.2
-
12.2.2 FND Design Data
12.2.2
-
12.2.2 DBA Data
12.2.2
-
SYNONYM: APPS.HZ_CUST_ACCOUNT_ROLES
12.1.1
owner:APPS, object_type:SYNONYM, object_name:HZ_CUST_ACCOUNT_ROLES, status:VALID,
-
SYNONYM: APPS.HZ_ORG_CONTACTS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:HZ_ORG_CONTACTS, status:VALID,
-
SYNONYM: APPS.HZ_CUST_ACCOUNT_ROLES
12.2.2
owner:APPS, object_type:SYNONYM, object_name:HZ_CUST_ACCOUNT_ROLES, status:VALID,
-
SYNONYM: APPS.HZ_ORG_CONTACTS
12.2.2
owner:APPS, object_type:SYNONYM, object_name:HZ_ORG_CONTACTS, status:VALID,
-
APPS.OE_OE_FORM_HEADER SQL Statements
12.1.1
-
APPS.OE_VALUE_TO_ID dependencies on OE_CONTACTS_V
12.1.1
-
APPS.OE_BULK_VALUE_TO_ID dependencies on OE_CONTACTS_V
12.2.2
-
APPS.OE_OE_FORM_HEADER SQL Statements
12.2.2
-
APPS.OE_OE_FORM_LINE dependencies on OE_CONTACTS_V
12.2.2
-
APPS.AHL_OSP_SHIPMENT_PUB dependencies on OE_CONTACTS_V
12.2.2
-
APPS.OE_ID_TO_VALUE dependencies on OE_CONTACTS_V
12.2.2
-
APPS.OE_BULK_VALUE_TO_ID dependencies on OE_CONTACTS_V
12.1.1
-
APPS.ONT_OEXOECOD_XMLP_PKG dependencies on OE_CONTACTS_V
12.1.1
-
APPS.ONT_OEXOECOD_XMLP_PKG dependencies on OE_CONTACTS_V
12.2.2