Search Results primary_email
Overview
APPS.AST_RELATIONSHIP_DETAILS_V is a supplementary view owned by the APPS schema and registered under FND Design Data as AST.AST_RELATIONSHIP_DETAILS_V. Its documented purpose is to simplify forms coding within Oracle EBS, consolidating party relationship data and its associated contact points into a single denormalized row per party. It is classified explicitly as a supplementary view, meaning Oracle does not recommend querying or altering data through it, and its definition may change dramatically in subsequent minor or major releases. Oracle further designates the object for internal use only: applications data should not be accessed through it except from standard Oracle Applications programs.
Because the view carries status VALID and is not referenced by any other database object, it behaves as a terminal presentation layer rather than a dependency for further database constructs. For the search term "primary_email," the view is relevant because it exposes a PRIMARY_EMAIL column of VARCHAR2(2000), allowing the primary electronic mail address of a party contact to be returned alongside name, role, address, and telephone attributes.
Underlying Base Objects
The view's dependencies comprise AR_LOOKUPS (VIEW) and the synonyms FND_TERRITORIES_TL, HZ_CONTACT_POINTS, HZ_ORG_CONTACTS, HZ_ORG_CONTACT_ROLES, HZ_PARTIES, and HZ_RELATIONSHIPS. These map to the TCA (Trading Community Architecture) registry: HZ_PARTIES supplies the party identity, HZ_RELATIONSHIPS links parties to one another, HZ_ORG_CONTACTS and HZ_ORG_CONTACT_ROLES establish organization contact records and their assigned roles, HZ_CONTACT_POINTS holds the actual phone, email, and address contact point rows, FND_TERRITORIES_TL resolves territory descriptions, and AR_LOOKUPS decodes lookup-coded values such as role or address types. The view therefore joins party, relationship, contact, and contact point data into one flattened result set.
Key Columns
- PARTY_ID (NUMBER(15)): the unique identifier of the party whose relationship details are returned.
- RELATIONSHIP_NAME (VARCHAR2(360)): the formatted name of the related party.
- PRIMARY_ROLE (VARCHAR2(80)): the party's principal relationship or contact role.
- JOB_TITLE and JOB_TITLE_TYPE (VARCHAR2(100)/80): job title and its lookup classification.
- DEPARTMENT and DEPARTMENT_TYPE (VARCHAR2(60)/80): department name and classification.
- PRIMARY_ADDRESS (VARCHAR2(504)): the concatenated primary address of the party.
- MAIL_STOP (VARCHAR2(60)): internal mail stop identifier.
- PRIMARY_PHONE_COUNTRY_CODE, PRIMARY_PHONE_AREA_CODE, PRIMARY_PHONE_NUMBER, PRIMARY_PHONE_EXTENSION: telephone components in separate columns, permitting international formatting.
- PRIMARY_EMAIL (VARCHAR2(2000)): the primary electronic mail address associated with the party's contact point.
Common Use Cases and Queries
Typical uses include contact-directory reporting, supplier or customer contact extraction, and integration feeds that require a primary email with its associated party, role, and telephone context. Because the view is documented as unsupported for direct access, such queries should be treated as read-only reporting and validated against the ETRM/source definition before production use.
SELECT party_id,
relationship_name,
primary_role,
primary_email
FROM apps.ast_relationship_details_v
WHERE primary_email IS NOT NULL;
To retrieve a full contact block for a specific party:
SELECT party_id,
relationship_name,
primary_role,
job_title,
department,
primary_address,
primary_phone_country_code || ' ' ||
primary_phone_area_code || ' ' ||
primary_phone_number AS phone,
primary_email
FROM apps.ast_relationship_details_v
WHERE party_id = :p_party_id;
Because the view is not referenced by any database object, it can be replaced or redefined by Oracle without downstream database impact, reinforcing the recommendation to rely on it only within standard Applications code paths.
-
VIEW: APPS.AST_RELATIONSHIP_DETAILS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AST.AST_RELATIONSHIP_DETAILS_V, object_name:AST_RELATIONSHIP_DETAILS_V, status:VALID,
-
VIEW: APPS.AST_RELATIONSHIP_DETAILS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AST.AST_RELATIONSHIP_DETAILS_V, object_name:AST_RELATIONSHIP_DETAILS_V, status:VALID,
-
VIEW: APPS.IEU_UWQ_TASKS_MYOWN_SEC_V
12.2.2
-
View: IEU_UWQ_TASKS_MYOWN_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IEU.IEU_UWQ_TASKS_MYOWN_V, object_name:IEU_UWQ_TASKS_MYOWN_V, status:VALID, product: IEU - Universal Work Queue , description: View used for UWQ selector SpreadTable. , implementation_dba_data: APPS.IEU_UWQ_TASKS_MYOWN_V ,
-
VIEW: APPS.JTF_TASK_UWQ_MYOWN_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:JTF.JTF_TASK_UWQ_MYOWN_V, object_name:JTF_TASK_UWQ_MYOWN_V, status:VALID,
-
TYPE: APPS.HZ_MATCHED_PARTY_OBJ
12.2.2
owner:APPS, object_type:TYPE, object_name:HZ_MATCHED_PARTY_OBJ, status:VALID,
-
VIEW: APPS.IEU_UWQ_TASKS_MYOWN_V
12.1.1
-
View: IEU_UWQ_TASKS_MYOWN_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:IEU.IEU_UWQ_TASKS_MYOWN_V, object_name:IEU_UWQ_TASKS_MYOWN_V, status:VALID, product: IEU - Universal Work Queue , description: View used for UWQ selector SpreadTable. , implementation_dba_data: APPS.IEU_UWQ_TASKS_MYOWN_V ,
-
VIEW: APPS.JTF_TASK_UWQ_MYOWN_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:JTF.JTF_TASK_UWQ_MYOWN_V, object_name:JTF_TASK_UWQ_MYOWN_V, status:VALID,
-
View: AST_RELATIONSHIP_DETAILS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AST.AST_RELATIONSHIP_DETAILS_V, object_name:AST_RELATIONSHIP_DETAILS_V, status:VALID, product: AST - TeleSales , implementation_dba_data: APPS.AST_RELATIONSHIP_DETAILS_V ,
-
VIEW: APPS.IEU_UWQ_TASKS_MYOWN_SEC_V
12.2.2
owner:APPS, object_type:VIEW, object_name:IEU_UWQ_TASKS_MYOWN_SEC_V, status:VALID,
-
VIEW: APPS.IEU_UWQ_TASKS_MYOWN_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IEU.IEU_UWQ_TASKS_MYOWN_V, object_name:IEU_UWQ_TASKS_MYOWN_V, status:VALID,
-
VIEW: APPS.IEU_UWQ_TASKS_MYOWN_V
12.2.2
-
Lookup Type: HZ_PUI_OVERVIEW_INFO
12.2.2
product: AR - Receivables , meaning: Party UI Overview Table Attributes , description: Party UI Overview Table Attributes ,
-
TYPE: APPS.HZ_MATCHED_PARTY_OBJ
12.1.1
owner:APPS, object_type:TYPE, object_name:HZ_MATCHED_PARTY_OBJ, status:VALID,
-
View: JTF_TASK_UWQ_MYOWN_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:JTF.JTF_TASK_UWQ_MYOWN_V, object_name:JTF_TASK_UWQ_MYOWN_V, status:VALID, product: JTF - CRM Foundation , description: Internal view used by the UWQ , implementation_dba_data: APPS.JTF_TASK_UWQ_MYOWN_V ,
-
View: AST_RELATIONSHIP_DETAILS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AST.AST_RELATIONSHIP_DETAILS_V, object_name:AST_RELATIONSHIP_DETAILS_V, status:VALID, product: AST - TeleSales , implementation_dba_data: APPS.AST_RELATIONSHIP_DETAILS_V ,
-
VIEW: APPS.IEU_UWQ_TASKS_MYOWN_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:IEU.IEU_UWQ_TASKS_MYOWN_V, object_name:IEU_UWQ_TASKS_MYOWN_V, status:VALID,
-
Lookup Type: HZ_PUI_OVERVIEW_INFO
12.1.1
product: AR - Receivables , meaning: Party UI Overview Table Attributes , description: Party UI Overview Table Attributes ,
-
View: JTF_TASK_UWQ_MYOWN_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:JTF.JTF_TASK_UWQ_MYOWN_V, object_name:JTF_TASK_UWQ_MYOWN_V, status:VALID, product: JTF - CRM Foundation , description: Internal view used by the UWQ , implementation_dba_data: APPS.JTF_TASK_UWQ_MYOWN_V ,
-
PACKAGE BODY: APPS.OKS_ENTITLEMENTS_WEB
12.1.1
-
PACKAGE BODY: APPS.OKS_ENTITLEMENTS_WEB
12.2.2
-
PACKAGE: APPS.OKS_ENTITLEMENTS_WEB
12.1.1
-
PACKAGE: APPS.OKS_ENTITLEMENTS_WEB
12.2.2
-
PACKAGE BODY: APPS.OKS_ENTITLEMENTS_WEB_W
12.2.2
-
PACKAGE BODY: APPS.OKS_ENTITLEMENTS_WEB_W
12.1.1
-
eTRM - IEU Tables and Views
12.2.2
description: UI Component-Data Types mapping ,
-
eTRM - IEU Tables and Views
12.1.1
description: UI Component-Data Types mapping ,
-
eTRM - AST Tables and Views
12.1.1
description: All available web searches ,
-
eTRM - AST Tables and Views
12.2.2
description: All available web searches ,
-
eTRM - JTF Tables and Views
12.2.2
description: Interface table to store data that needs to be displayed in Excel ,
-
eTRM - JTF Tables and Views
12.1.1
description: Interface table to store data that needs to be displayed in Excel ,