Search Results party_rel
Overview
APPS.CSC_HZ_PER_PROFILES_V is a reporting and integration view in the Oracle E-Business Suite (EBS) Releases 12.1.1 and 12.2.2 that consolidates party-level person profile information with organizational contact data. It is owned by the APPS schema and is built as a UNION of two SELECT statements, allowing it to present both persons who are linked to an organization through a party relationship and persons who are not. The view is part of the Oracle Customer (Trading Community Architecture / HZ) data model lineage, and is commonly used by downstream applications, concurrent programs, and custom reports that need a flattened, joined representation of person and organization-contact attributes without directly navigating the normalized HZ_PERSON_PROFILES, HZ_ORG_CONTACTS, and HZ_RELATIONSHIPS tables. Its presence supports the "party_rel" relationship path users frequently search for, since the relationship between person and organization is resolved through HZ_RELATIONSHIPS.
Underlying Base Objects
The view is documented as referencing three base objects, each accessed through APPS synonyms:
- HZ_PERSON_PROFILES (SYNONYM) — supplies person identity attributes such as party identifier, known-as name, phonetic name, date of birth, personal income, name suffix, and person title.
- HZ_ORG_CONTACTS (SYNONYM) — supplies organization contact attributes such as contact ID, decision maker flag, job title, managed-by, languages, rank, department, and mail stop.
- HZ_RELATIONSHIPS (SYNONYM) — supplies the party relationship linkage that joins a person to an organization contact, using subject/object identifiers, table names, and the directional flag.
The first branch of the UNION joins HZ_ORG_CONTACTS to HZ_RELATIONSHIPS via ORG_CONT.PARTY_RELATIONSHIP_ID = PARTY_REL.RELATIONSHIP_ID, then links the relationship to the person profile where PARTY_REL.SUBJECT_ID or PARTY_REL.OBJECT_ID equals the person's PARTY_ID. It restricts relationships to those with subject_table_name and object_table_name equal to 'HZ_PARTIES' and directional_flag = 'F', and applies effective-date filtering. The second branch returns person profiles that have no such forward party relationship, padding the organization-contact columns with NULLs.
Key Columns
The view exposes a merged column set drawn from both branches:
- PARTY_ID — the person's party identifier, the primary joining key to HZ_PARTIES.
- KNOWN_AS, PERSON_NAME_PHONETIC, PERSON_NAME_SUFFIX, PERSON_TITLE — person naming attributes.
- DATE_OF_BIRTH, PERSONAL_INCOME — personal demographic attributes from HZ_PERSON_PROFILES.
- ORG_CONTACT_ID, DECISION_MAKER_FLAG, JOB_TITLE, JOB_TITLE_CODE, DEPARTMENT, DEPARTMENT_CODE, RANK, MAIL_STOP — organization contact details; these are NULL for persons without a matching forward relationship.
- MANAGED_BY, NATIVE_LANGUAGE, OTHER_LANGUAGE_1, OTHER_LANGUAGE_2, REFERENCE_USE_FLAG — additional contact attributes.
- LAST_UPDATE_DATE — appears from both profile and contact sources, supporting incremental extraction and auditing.
Common Use Cases and Queries
Typical scenarios include resolving a person's organization contacts through the party relationship path, generating contact rosters for a customer organization, and extracting demographic plus contact attributes for analytics or integrations.
Sample query returning linked persons and their organization contacts:
SELECT party_id, known_as, org_contact_id, job_title, departmentFROM apps.csc_hz_per_profiles_vWHERE org_contact_id IS NOT NULL;
Sample query returning persons with no forward organizational relationship:
SELECT party_id, known_as, date_of_birthFROM apps.csc_hz_per_profiles_vWHERE org_contact_id IS NULL;
Because effective-date filtering is embedded in the first branch, results reflect only currently active person profiles where an end date is present. Reports relying on this view should account for the UNION semantics, since contact columns are populated only where a qualifying forward 'HZ_PARTIES' relationship exists.
-
VIEW: APPS.CSC_HZ_PER_PROFILES_V
12.1.1
-
VIEW: APPS.CSC_HZ_PER_PROFILES_V
12.2.2
-
View: CSC_HZ_PER_PROFILES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CSC.CSC_HZ_PER_PROFILES_V, object_name:CSC_HZ_PER_PROFILES_V, status:VALID, product: CSC - Customer Care , description: View of HZ_PERSON_PROFILES, HZ_PARTY_RELATIONSHIPS. Detailed information about a party. Refer to base table for details. , implementation_dba_data: APPS.CSC_HZ_PER_PROFILES_V ,
-
VIEW: APPS.JTF_RS_PARTY_CONTACTS_VL
12.1.1
-
VIEW: APPS.JTF_RS_PARTY_CONTACTS_VL
12.2.2
-
View: CSC_HZ_PER_PROFILES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CSC.CSC_HZ_PER_PROFILES_V, object_name:CSC_HZ_PER_PROFILES_V, status:VALID, product: CSC - Customer Care , description: View of HZ_PERSON_PROFILES, HZ_PARTY_RELATIONSHIPS. Detailed information about a party. Refer to base table for details. , implementation_dba_data: APPS.CSC_HZ_PER_PROFILES_V ,
-
VIEW: APPS.CS_BILL_TO_SHIP_TO_PARTY_V
12.2.2
-
View: JTF_RS_PARTY_CONTACTS_VL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:JTF.JTF_RS_PARTY_CONTACTS_VL, object_name:JTF_RS_PARTY_CONTACTS_VL, status:VALID, product: JTF - CRM Foundation , description: The list of party contacts , implementation_dba_data: APPS.JTF_RS_PARTY_CONTACTS_VL ,
-
VIEW: APPS.WSH_CARRIER_SITE_CONTACTS_V
12.1.1
-
VIEW: APPS.WSH_CARRIER_SITE_CONTACTS_V
12.2.2
-
View: JTF_RS_PARTY_CONTACTS_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:JTF.JTF_RS_PARTY_CONTACTS_VL, object_name:JTF_RS_PARTY_CONTACTS_VL, status:VALID, product: JTF - CRM Foundation , description: The list of party contacts , implementation_dba_data: APPS.JTF_RS_PARTY_CONTACTS_VL ,
-
VIEW: APPS.CSC_HZ_PARTY_RELATIONSHIPS_V
12.1.1
-
VIEW: APPS.CS_BILL_TO_SHIP_TO_PARTY_V
12.1.1
-
VIEW: APPS.CSC_HZ_PARTY_RELATIONSHIPS_V
12.2.2
-
VIEW: APPS.CSC_HZ_PARTIES_SELF_NEW_V
12.2.2
-
VIEW: APPS.CSC_HZ_PARTIES_SELF_NEW_V
12.1.1
-
VIEW: APPS.JTF_TASK_PARTY_CONTACTS_V
12.1.1
-
VIEW: APPS.CSC_HZ_PARTIES_SELF_V
12.1.1
-
VIEW: APPS.CSC_HZ_PARTIES_SELF_V
12.2.2
-
VIEW: APPS.JTF_TASK_PARTY_CONTACTS_V
12.2.2
-
VIEW: APPS.CSC_CUSTOMER_RESPONSE_V
12.1.1
-
VIEW: APPS.CSC_CUSTOMER_RESPONSE_V
12.2.2
-
View: WSH_CARRIER_SITE_CONTACTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSH_CARRIER_SITE_CONTACTS_V, object_name:WSH_CARRIER_SITE_CONTACTS_V, status:VALID, product: WSH - Shipping Execution , implementation_dba_data: APPS.WSH_CARRIER_SITE_CONTACTS_V ,
-
VIEW: APPS.AST_ORG_CONTACTS_V
12.1.1
-
View: WSH_CARRIER_SITE_CONTACTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSH_CARRIER_SITE_CONTACTS_V, object_name:WSH_CARRIER_SITE_CONTACTS_V, status:VALID, product: WSH - Shipping Execution , implementation_dba_data: APPS.WSH_CARRIER_SITE_CONTACTS_V ,
-
VIEW: APPS.AST_ORG_CONTACTS_V
12.2.2
-
VIEW: APPS.CSC_HZ_PARTIES_V
12.2.2
-
VIEW: APPS.CSC_HZ_PARTIES_V
12.1.1
-
View: CSC_HZ_PARTY_RELATIONSHIPS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CSC.CSC_HZ_PARTY_RELATIONSHIPS_V, object_name:CSC_HZ_PARTY_RELATIONSHIPS_V, status:VALID, product: CSC - Customer Care , description: View of HZ_RELATIONSHIPS. View is used to get party relationship details. , implementation_dba_data: APPS.CSC_HZ_PARTY_RELATIONSHIPS_V ,
-
View: CSC_HZ_PARTIES_SELF_NEW_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CSC.CSC_HZ_PARTIES_SELF_NEW_V, object_name:CSC_HZ_PARTIES_SELF_NEW_V, status:VALID, product: CSC - Customer Care , description: View of HZ_PARTIES, HZ_RELATIONSHIPS. This view is used in Contact center form to get party relationships details along with self party relationship details (Fetches data from the new Relationships model) , implementation_dba_data: APPS.CSC_HZ_PARTIES_SELF_NEW_V ,
-
View: CSC_HZ_PARTY_RELATIONSHIPS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CSC.CSC_HZ_PARTY_RELATIONSHIPS_V, object_name:CSC_HZ_PARTY_RELATIONSHIPS_V, status:VALID, product: CSC - Customer Care , description: View of HZ_RELATIONSHIPS. View is used to get party relationship details. , implementation_dba_data: APPS.CSC_HZ_PARTY_RELATIONSHIPS_V ,
-
VIEW: APPS.JTF_PARTIES_V
12.2.2
-
View: CSC_CUSTOMER_RESPONSE_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CSC.CSC_CUSTOMER_RESPONSE_V, object_name:CSC_CUSTOMER_RESPONSE_V, status:VALID, product: CSC - Customer Care , description: Contains Relationship information, Subject (Caller) and Object (Person/Group/Organization) information , implementation_dba_data: APPS.CSC_CUSTOMER_RESPONSE_V ,
-
View: CSC_HZ_PARTIES_SELF_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CSC.CSC_HZ_PARTIES_SELF_V, object_name:CSC_HZ_PARTIES_SELF_V, status:VALID, product: CSC - Customer Care , description: View of HZ_PARTIES, HZ_PARTY_RELATIONSHIPS. This view is used in Contact center form to get party relationships details along with self party relationship details , implementation_dba_data: APPS.CSC_HZ_PARTIES_SELF_V ,
-
VIEW: APPS.JTF_PARTIES_V
12.1.1
-
View: CSC_HZ_PARTIES_SELF_NEW_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CSC.CSC_HZ_PARTIES_SELF_NEW_V, object_name:CSC_HZ_PARTIES_SELF_NEW_V, status:VALID, product: CSC - Customer Care , description: View of HZ_PARTIES, HZ_RELATIONSHIPS. This view is used in Contact center form to get party relationships details along with self party relationship details (Fetches data from the new Relationships model) , implementation_dba_data: APPS.CSC_HZ_PARTIES_SELF_NEW_V ,
-
View: CSC_HZ_PARTIES_SELF_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CSC.CSC_HZ_PARTIES_SELF_V, object_name:CSC_HZ_PARTIES_SELF_V, status:VALID, product: CSC - Customer Care , description: View of HZ_PARTIES, HZ_PARTY_RELATIONSHIPS. This view is used in Contact center form to get party relationships details along with self party relationship details , implementation_dba_data: APPS.CSC_HZ_PARTIES_SELF_V ,
-
View: CSC_CUSTOMER_RESPONSE_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CSC.CSC_CUSTOMER_RESPONSE_V, object_name:CSC_CUSTOMER_RESPONSE_V, status:VALID, product: CSC - Customer Care , description: Contains Relationship information, Subject (Caller) and Object (Person/Group/Organization) information , implementation_dba_data: APPS.CSC_CUSTOMER_RESPONSE_V ,
-
VIEW: APPS.AST_SALESLEAD_UWQ_V
12.2.2
-
View: JTF_TASK_PARTY_CONTACTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:JTF.JTF_TASK_PARTY_CONTACTS_V, object_name:JTF_TASK_PARTY_CONTACTS_V, status:VALID, product: JTF - CRM Foundation , description: View all contacts, using hz_relationship table as the driving table. The view expose data for subject and object party. Please note that the view does not join with hz_org_contacts , implementation_dba_data: APPS.JTF_TASK_PARTY_CONTACTS_V ,
-
VIEW: APPS.AST_MYTEAM_SALESLEAD_UWQ_V
12.1.1
-
VIEW: APPS.AST_MYTEAM_SALESLEAD_UWQ_V
12.2.2
-
VIEW: APPS.AST_SALESLEAD_UWQ_V
12.1.1
-
View: JTF_TASK_PARTY_CONTACTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:JTF.JTF_TASK_PARTY_CONTACTS_V, object_name:JTF_TASK_PARTY_CONTACTS_V, status:VALID, product: JTF - CRM Foundation , description: View all contacts, using hz_relationship table as the driving table. The view expose data for subject and object party. Please note that the view does not join with hz_org_contacts , implementation_dba_data: APPS.JTF_TASK_PARTY_CONTACTS_V ,
-
View: JTF_PARTIES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:JTF.JTF_PARTIES_V, object_name:JTF_PARTIES_V, status:VALID, product: JTF - CRM Foundation , description: Party (Organization or Group or Person) and relationship information , implementation_dba_data: APPS.JTF_PARTIES_V ,
-
APPS.JTF_RS_RESOURCE_PUB SQL Statements
12.1.1
-
View: JTF_PARTIES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:JTF.JTF_PARTIES_V, object_name:JTF_PARTIES_V, status:VALID, product: JTF - CRM Foundation , description: Party (Organization or Group or Person) and relationship information , implementation_dba_data: APPS.JTF_PARTIES_V ,
-
View: AST_ORG_CONTACTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AST.AST_ORG_CONTACTS_V, object_name:AST_ORG_CONTACTS_V, status:VALID, product: AST - TeleSales , implementation_dba_data: APPS.AST_ORG_CONTACTS_V ,
-
VIEW: APPS.CSC_HZ_PARTIES_CONT_INFO_V
12.2.2
-
View: AST_ORG_CONTACTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AST.AST_ORG_CONTACTS_V, object_name:AST_ORG_CONTACTS_V, status:VALID, product: AST - TeleSales , implementation_dba_data: APPS.AST_ORG_CONTACTS_V ,