Search Results sub_party_name
Overview
APPS.CSC_HZ_PARTY_RELATIONSHIPS_V is a supplementary view owned by the APPS schema in Oracle E-Business Suite 12.1.1 and 12.2.2, registered under FND Design Data as CSC.CSC_HZ_PARTY_RELATIONSHIPS_V. It presents party-to-party relationship data drawn from the Oracle Trading Community Architecture (TCA) model, combining the relationship record itself with denormalized names, types, and job titles for both the subject and object parties. Its documented purpose is to simplify forms coding within the Customer Care (CSC) module. Oracle explicitly warns that this is a supplementary view and does not recommend querying or altering data through it, as its definition may change dramatically in subsequent minor or major releases. The view carries a VALID status in the ETRM repository.
For the user search term "sub_party_name", this view is the relevant object: it exposes a SUB_PARTY_NAME column (VARCHAR2(360)) that returns the party name of the subordinate or object side of a relationship. That column is a primary reason developers and report authors locate this view.
Underlying Base Objects
The documented referenced base objects are HZ_RELATIONSHIPS, HZ_PARTIES, HZ_ORG_CONTACTS (all synonyms), and AR_LOOKUPS (a view). HZ_RELATIONSHIPS supplies the relationship record keyed by PARTY_RELATIONSHIP_ID and the subject/object party identifiers; HZ_PARTIES supplies party names and party types for both sides; HZ_ORG_CONTACTS contributes contact attributes such as SUB_JOB_TITLE; and AR_LOOKUPS resolves relationship codes into their stored meaning via the party_relationship_type lookup. Because the view joins these objects, it flattens the TCA relationship structure into a single denormalized row per relationship with both PARTY_ID and PARTY_RELATIONSHIP_ID as identifiers. The presence of two object version numbers—one for HZ_RELATIONSHIPS and one for HZ_PARTIES—confirms the join across both base entities.
Key Columns
- ROW_ID – Standard Row ID column; PARTY_ID and PARTY_RELATIONSHIP_ID – identifiers for the party and the relationship record.
- PARTY_NUMBER – Party number; SUBJECT_ID and OBJECT_ID – the two party identifiers participating in the relationship.
- OBJ_PARTY_TYPE and SUB_PARTY_TYPE – party type, limited to person, organization, group, or relationship.
- OBJECT_NAME and SUB_PARTY_NAME – the party names for the object and subject sides; SUB_JOB_TITLE – contact job title.
- RELATION, RELATIONSHIP_CODE, and RELATIONSHIP_MEANING – the relationship type and its lookup meaning from party_relationship_type.
- EFFECTIVE_START_DATE / EFFECTIVE_END_DATE – validity window; STATUS and DIRECTIONAL_FLAG – status flag and direction of the relationship.
- COMMENTS, OBJ_LAST_UPDATE_DATE, OBJECT_VERSION_NUMBER, and PARTY_OBJECT_VERSION_NUMBER – audit and concurrency columns.
Common Use Cases and Queries
Typical uses include identifying contacts and their employers, resolving who reports to whom in a party hierarchy, and populating customer care screens with both sides of a relationship. Because the view is non-supported for direct query, production integrations should prefer underlying TCA tables or supported public APIs, but ad hoc reporting against the view remains common.
A representative query retrieving the subordinate party name together with its related object name and relationship meaning:
SELECT party_id, party_relationship_id, sub_party_name, object_name, relationship_meaningFROM apps.csc_hz_party_relationships_vWHERE sub_party_name IS NOT NULLAND TRUNC(effective_start_date) <= TRUNC(SYSDATE)AND (effective_end_date IS NULL OR TRUNC(effective_end_date) >= TRUNC(SYSDATE));
Filtering on SUB_PARTY_TYPE or relting via RELATIONSHIP_CODE against AR_LOOKUPS values allows targeted extracts of contact-to-organization associations, while the effective date columns support as-of-date reporting. All access should be read-only.
-
VIEW: APPS.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,
-
VIEW: APPS.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,
-
View: CS_SR_HZ_RELATIONSHIPS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CS.CS_SR_HZ_RELATIONSHIPS_V, object_name:CS_SR_HZ_RELATIONSHIPS_V, status:VALID, product: CS - Service , description: View for details of Related, Subject, Object party. , implementation_dba_data: APPS.CS_SR_HZ_RELATIONSHIPS_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: CSD_HZ_REL_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CSD.CSD_HZ_REL_V, object_name:CSD_HZ_REL_V, status:VALID, product: CSD - Depot Repair , description: View for details of Related, Subject, Object party. Used in the Depot Repair Workbench. , implementation_dba_data: APPS.CSD_HZ_REL_V ,
-
View: CSD_HZ_REL_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CSD.CSD_HZ_REL_V, object_name:CSD_HZ_REL_V, status:VALID, product: CSD - Depot Repair , description: View for details of Related, Subject, Object party. Used in the Depot Repair Workbench. , implementation_dba_data: APPS.CSD_HZ_REL_V ,
-
View: CS_SR_HZ_RELATIONSHIPS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CS.CS_SR_HZ_RELATIONSHIPS_V, object_name:CS_SR_HZ_RELATIONSHIPS_V, status:VALID, product: CS - Service , description: View for details of Related, Subject, Object party. , implementation_dba_data: APPS.CS_SR_HZ_RELATIONSHIPS_V ,
-
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: APPS.CS_SR_HZ_RELATIONSHIPS_V
12.2.2
-
VIEW: APPS.CSD_HZ_REL_V
12.1.1
-
VIEW: APPS.CSD_HZ_REL_V
12.2.2
-
VIEW: APPS.CS_SR_HZ_RELATIONSHIPS_V
12.1.1
-
View: CSC_GS_CUSTOMERS_ORG_ADV_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CSC.CSC_GS_CUSTOMERS_ORG_ADV_V, object_name:CSC_GS_CUSTOMERS_ORG_ADV_V, status:VALID, product: CSC - Customer Care , description: View used to perform search operation on customer information in the contact center form. , implementation_dba_data: APPS.CSC_GS_CUSTOMERS_ORG_ADV_V ,
-
View: CSC_GS_CUSTOMERS_PER_ADV_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CSC.CSC_GS_CUSTOMERS_PER_ADV_V, object_name:CSC_GS_CUSTOMERS_PER_ADV_V, status:VALID, product: CSC - Customer Care , description: View used to perform search operation on customer information in the contact center form. , implementation_dba_data: APPS.CSC_GS_CUSTOMERS_PER_ADV_V ,
-
View: CSC_GS_CUSTOMERS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CSC.CSC_GS_CUSTOMERS_V, object_name:CSC_GS_CUSTOMERS_V, status:VALID, product: CSC - Customer Care , description: View used to perform search operation on customer information in the contact center form. , implementation_dba_data: APPS.CSC_GS_CUSTOMERS_V ,
-
View: CSC_GS_CUSTOMERS_ORG_ADV_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CSC.CSC_GS_CUSTOMERS_ORG_ADV_V, object_name:CSC_GS_CUSTOMERS_ORG_ADV_V, status:VALID, product: CSC - Customer Care , description: View used to perform search operation on customer information in the contact center form. , implementation_dba_data: APPS.CSC_GS_CUSTOMERS_ORG_ADV_V ,
-
View: CSC_HZ_PARTIES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CSC.CSC_HZ_PARTIES_V, object_name:CSC_HZ_PARTIES_V, status:VALID, product: CSC - Customer Care , description: View of HZ_PARTIES, HZ_PARTY_RELATIONSHIPS. This view is used to get party relationships details , implementation_dba_data: APPS.CSC_HZ_PARTIES_V ,
-
View: CSC_HZ_PARTIES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CSC.CSC_HZ_PARTIES_V, object_name:CSC_HZ_PARTIES_V, status:VALID, product: CSC - Customer Care , description: View of HZ_PARTIES, HZ_PARTY_RELATIONSHIPS. This view is used to get party relationships details , implementation_dba_data: APPS.CSC_HZ_PARTIES_V ,
-
View: CSC_GS_CUSTOMERS_PER_ADV_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CSC.CSC_GS_CUSTOMERS_PER_ADV_V, object_name:CSC_GS_CUSTOMERS_PER_ADV_V, status:VALID, product: CSC - Customer Care , description: View used to perform search operation on customer information in the contact center form. , implementation_dba_data: APPS.CSC_GS_CUSTOMERS_PER_ADV_V ,
-
View: CSC_GS_CUSTOMERS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CSC.CSC_GS_CUSTOMERS_V, object_name:CSC_GS_CUSTOMERS_V, status:VALID, product: CSC - Customer Care , description: View used to perform search operation on customer information in the contact center form. , implementation_dba_data: APPS.CSC_GS_CUSTOMERS_V ,
-
VIEW: APPS.CSD_HZ_REL_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CSD.CSD_HZ_REL_V, object_name:CSD_HZ_REL_V, status:VALID,
-
VIEW: APPS.CS_SR_HZ_RELATIONSHIPS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CS.CS_SR_HZ_RELATIONSHIPS_V, object_name:CS_SR_HZ_RELATIONSHIPS_V, status:VALID,
-
VIEW: APPS.CSC_HZ_PARTIES_SRCH_WOC_V
12.2.2
-
VIEW: APPS.CSD_HZ_REL_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CSD.CSD_HZ_REL_V, object_name:CSD_HZ_REL_V, status:VALID,
-
VIEW: APPS.CS_SR_HZ_RELATIONSHIPS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CS.CS_SR_HZ_RELATIONSHIPS_V, object_name:CS_SR_HZ_RELATIONSHIPS_V, status:VALID,
-
VIEW: APPS.CSC_HZ_PARTIES_SRCH_WOC_V
12.1.1
-
View: CSC_HZ_PARTIES_REL_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CSC.CSC_HZ_PARTIES_REL_V, object_name:CSC_HZ_PARTIES_REL_V, status:VALID, product: CSC - Customer Care , description: Gives Customer Party, Contact Party and Relationship Party information , implementation_dba_data: APPS.CSC_HZ_PARTIES_REL_V ,
-
VIEW: APPS.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,
-
VIEW: APPS.CSC_GS_CUSTOMERS_V
12.1.1
-
VIEW: APPS.CSC_GS_CUSTOMERS_PER_ADV_V
12.1.1
-
VIEW: APPS.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,
-
VIEW: APPS.CSC_GS_CUSTOMERS_V
12.2.2
-
VIEW: APPS.CSC_HZ_PARTIES_SRCH_WOC_V
12.2.2
owner:APPS, object_type:VIEW, object_name:CSC_HZ_PARTIES_SRCH_WOC_V, status:VALID,
-
VIEW: APPS.CSC_HZ_PARTIES_SRCH_REL_V
12.1.1
-
View: CSC_HZ_PARTIES_REL_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CSC.CSC_HZ_PARTIES_REL_V, object_name:CSC_HZ_PARTIES_REL_V, status:VALID, product: CSC - Customer Care , description: Gives Customer Party, Contact Party and Relationship Party information , implementation_dba_data: APPS.CSC_HZ_PARTIES_REL_V ,
-
VIEW: APPS.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,
-
VIEW: APPS.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,
-
VIEW: APPS.CSC_HZ_PARTIES_SRCH_REL_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CSC.CSC_HZ_PARTIES_SRCH_REL_V, object_name:CSC_HZ_PARTIES_SRCH_REL_V, status:VALID,
-
VIEW: APPS.CSC_GS_CUSTOMERS_ORG_ADV_V
12.1.1
-
VIEW: APPS.CSC_GS_CUSTOMERS_PER_ADV_V
12.2.2
-
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: APPS.CSC_HZ_PARTIES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CSC.CSC_HZ_PARTIES_V, object_name:CSC_HZ_PARTIES_V, status:VALID,
-
VIEW: APPS.CSC_GS_CUSTOMERS_ORG_ADV_V
12.2.2
-
VIEW: APPS.CSC_HZ_PARTIES_SRCH_WOC_V
12.1.1
owner:APPS, object_type:VIEW, object_name:CSC_HZ_PARTIES_SRCH_WOC_V, status:VALID,
-
VIEW: APPS.CSC_HZ_PARTIES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CSC.CSC_HZ_PARTIES_V, object_name:CSC_HZ_PARTIES_V, status:VALID,
-
VIEW: APPS.CSC_HZ_PARTIES_SRCH_REL_V
12.2.2
-
VIEW: APPS.CSC_HZ_PARTIES_SRCH_REL_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CSC.CSC_HZ_PARTIES_SRCH_REL_V, object_name:CSC_HZ_PARTIES_SRCH_REL_V, status:VALID,
-
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.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: 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 ,