Search Results person_profile
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.
-
Lookup Type: PERSON_PROFILE
12.2.2
product: AR - Receivables , meaning: Person Profile , description: Person Profile ,
-
Lookup Type: PERSON_PROFILE
12.1.1
product: AR - Receivables , meaning: Person Profile , description: Person Profile ,
-
VIEW: APPS.CSC_HZ_PER_PROFILES_V
12.2.2
-
VIEW: APPS.CSC_HZ_PER_PROFILES_V
12.1.1
-
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.JTF_PARTY_CUSTOMERS_V
12.1.1
-
Lookup Type: PERSON_PROF_CAT_UI
12.1.1
product: AR - Receivables , meaning: Displayed Person Profile Categories , description: Displayed Person Profile Categories ,
-
Lookup Type: PERSON_PROFILE_CATEGORY
12.1.1
product: AR - Receivables , meaning: Categorize Person Profiles , description: Categorize Person Profiles ,
-
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_PARTY_CUSTOMERS_V
12.2.2
-
Lookup Type: PERSON_PROFILE_CATEGORY
12.2.2
product: AR - Receivables , meaning: Categorize Person Profiles , description: Categorize Person Profiles ,
-
Lookup Type: PERSON_PROF_CAT_UI
12.2.2
product: AR - Receivables , meaning: Displayed Person Profile Categories , description: Displayed Person Profile Categories ,
-
View: JTF_PARTY_CUSTOMERS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:JTF.JTF_PARTY_CUSTOMERS_V, object_name:JTF_PARTY_CUSTOMERS_V, status:VALID, product: JTF - CRM Foundation , description: JTF_PARTY_CUSTOMERS_V displays party information from HZ_PARTIES (and HZ_ORGANIZATION_PROFILES or HZ_PERSON_PROFILES depending on PARTY_TYPE). , implementation_dba_data: APPS.JTF_PARTY_CUSTOMERS_V ,
-
View: JTF_PARTY_CUSTOMERS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:JTF.JTF_PARTY_CUSTOMERS_V, object_name:JTF_PARTY_CUSTOMERS_V, status:VALID, product: JTF - CRM Foundation , description: JTF_PARTY_CUSTOMERS_V displays party information from HZ_PARTIES (and HZ_ORGANIZATION_PROFILES or HZ_PERSON_PROFILES depending on PARTY_TYPE). , implementation_dba_data: APPS.JTF_PARTY_CUSTOMERS_V ,
-
VIEW: APPS.JTF_PARTIES_V
12.2.2
-
VIEW: APPS.JTF_PARTIES_V
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: 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 ,
-
12.1.1 FND Design Data
12.1.1
-
APPS.WSH_ITM_PARTY_SYNC SQL Statements
12.2.2
-
12.2.2 FND Design Data
12.2.2
-
APPS.WSH_ITM_PARTY_SYNC SQL Statements
12.1.1
-
APPS.WSH_ITM_PARTY_SYNC dependencies on HZ_PERSON_PROFILES
12.2.2
-
PACKAGE BODY: APPS.WSH_ITM_PARTY_SYNC
12.2.2
-
APPS.WSH_ITM_PARTY_SYNC dependencies on HZ_CUST_ACCOUNTS
12.1.1
-
APPS.WSH_ITM_PARTY_SYNC dependencies on HZ_CUST_ACCOUNTS
12.2.2
-
APPS.WSH_ITM_PARTY_SYNC dependencies on HZ_PARTIES
12.2.2
-
PACKAGE BODY: APPS.WSH_ITM_PARTY_SYNC
12.1.1
-
APPS.WSH_ITM_PARTY_SYNC dependencies on HZ_PARTIES
12.1.1
-
APPS.HZ_BES_BO_UTIL_PKG SQL Statements
12.1.1
-
PACKAGE BODY: APPS.HZ_BES_BO_UTIL_PKG
12.1.1
-
PACKAGE BODY: APPS.HZ_BES_BO_UTIL_PKG
12.2.2
-
APPS.HZ_BES_BO_UTIL_PKG SQL Statements
12.2.2
-
APPS.HZ_BES_BO_UTIL_PKG dependencies on HZ_UTILITY_V2PUB
12.2.2
-
APPS.HZ_BES_BO_UTIL_PKG dependencies on HZ_UTILITY_V2PUB
12.1.1
-
APPS.HZ_BES_BO_UTIL_PKG dependencies on HZ_BUS_OBJ_TRACKING
12.1.1
-
APPS.HZ_BES_BO_UTIL_PKG dependencies on HZ_BUS_OBJ_TRACKING
12.2.2
-
APPS.HZ_BES_BO_UTIL_PKG dependencies on FND_LOG
12.1.1
-
APPS.HZ_BES_BO_UTIL_PKG dependencies on FND_LOG
12.2.2