Search Results content_source_number
Overview
HZ_PERSON_PROFILES_V is a seeded Oracle E-Business Suite view owned by the APPS schema and catalogued under the Receivables (AR) product family. It presents person-level profile information maintained within the Trading Community Architecture (TCA) model, exposing attributes such as names, identifiers, demographics, and contact preferences in a single denormalized projection. In Oracle EBS 12.1.1 and 12.2.2 the object is registered with a status of VALID, confirming it is a supported, compiled component of the applications data dictionary rather than a custom or deprecated artifact.
Because the view is a read-only projection, it is intended for reporting, inquiry, and integration purposes rather than direct DML. Oracle EBS reports, discoverer workbooks, and third-party integrations reference HZ_PERSON_PROFILES_V to retrieve person profile data without needing to reconcile the join logic between party and profile tables themselves. This encapsulation is the principal benefit of consuming the view.
Underlying Base Objects
The documented base objects referenced by HZ_PERSON_PROFILES_V are HZ_PARTIES and HZ_PERSON_PROFILES, both exposed to the view through synonyms. HZ_PARTIES is the central TCA entity that stores the core party record and its classification as a person, organization, or group. HZ_PERSON_PROFILES stores the extended person-specific profile attributes linked to a party by PARTY_ID and PERSON_PROFILE_ID.
The view selects primarily from the profile table (aliased B in the view text) and returns the full set of descriptive and control columns, including the WHO columns (LAST_UPDATE_DATE, LAST_UPDATED_BY, CREATION_DATE, CREATED_BY, LAST_UPDATE_LOGIN, REQUEST_ID, PROGRAM_APPLICATION_ID, PROGRAM_ID, PROGRAM_UPDATE_DATE), the DFF Attribute1–Attribute20 and Global Attribute1–Global Attribute20 flexfield columns, and the descriptive person name components. The reliance on HZ_PARTIES underpins the party-centric integrity of the data returned.
Key Columns
- PERSON_PROFILE_ID / PARTY_ID — Primary and foreign key identifiers linking the profile to its owning party record.
- PERSON_NAME and name components — PERSON_PRE_NAME_ADJUNCT, PERSON_FIRST_NAME, PERSON_MIDDLE_NAME, PERSON_LAST_NAME, PERSON_NAME_SUFFIX, PERSON_TITLE, PERSON_INITIALS, KNOWN_AS, plus phonetic equivalents.
- TAX_NAME, TAX_REFERENCE, JGZZ_FISCAL_CODE — Fiscal and tax registration attributes, including the Italian fiscal code.
- Demographic attributes — DATE_OF_BIRTH, PLACE_OF_BIRTH, DATE_OF_DEATH, GENDER, DECLARED_ETHNICITY, MARITAL_STATUS and MARITAL_STATUS_EFFECTIVE_DATE.
- Household and income attributes — PERSONAL_INCOME, HOUSEHOLD_INCOME, HOUSEHOLD_SIZE, HEAD_OF_HOUSEHOLD_FLAG, RENT_OWN_IND.
- BEST_TIME_CONTACT_BEGIN / BEST_TIME_CONTACT_END — The preferred contact window for the person, which is precisely the column family matched by the search term.
- EFFECTIVE_START_DATE / EFFECTIVE_END_DATE — Date-effective ranges governing the validity of the profile record.
- DFF and Global DFF attributes — Attribute_Category plus Attribute1–20 and Global_Attribute1–20 for descriptive flexfield extensions.
Common Use Cases and Queries
Typical uses include customer master reporting, marketing segmentation, and contact-preference analysis. The BEST_TIME_CONTACT_BEGIN and BEST_TIME_CONTACT_END columns are frequently queried to schedule outbound communications within a customer's stated availability window.
A representative query retrieving the preferred contact window for a party is shown below:
SELECT party_id, person_name, best_time_contact_begin, best_time_contact_end, last_update_date FROM apps.hz_person_profiles_v WHERE best_time_contact_begin IS NOT NULL ORDER BY person_name;SELECT party_id, person_first_name, person_last_name, gender, date_of_birth FROM apps.hz_person_profiles_v WHERE party_id = :p_party_id;SELECT p.party_id, p.person_name, h.party_number FROM apps.hz_person_profiles_v p JOIN apps.hz_parties h ON h.party_id = p.party_id WHERE p.effective_end_date IS NULL OR p.effective_end_date > SYSDATE;
Because the view supplies the WHO audit columns and both DFF families, it is also suitable for incremental data extracts that reconcile changes by LAST_UPDATE_DATE or REQUEST_ID.
-
View: HZ_PERSON_PROFILES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AR.HZ_PERSON_PROFILES_V, object_name:HZ_PERSON_PROFILES_V, status:VALID, product: AR - Receivables , implementation_dba_data: APPS.HZ_PERSON_PROFILES_V ,
-
View: HZ_PERSON_PROFILES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AR.HZ_PERSON_PROFILES_V, object_name:HZ_PERSON_PROFILES_V, status:VALID, product: AR - Receivables , implementation_dba_data: APPS.HZ_PERSON_PROFILES_V ,
-
View: HZ_ORG_PROFILES_CPUI_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AR.HZ_ORG_PROFILES_CPUI_V, object_name:HZ_ORG_PROFILES_CPUI_V, status:VALID, product: AR - Receivables , description: Organization Profiles , implementation_dba_data: APPS.HZ_ORG_PROFILES_CPUI_V ,
-
View: HZ_ORG_PROFILES_CPUI_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AR.HZ_ORG_PROFILES_CPUI_V, object_name:HZ_ORG_PROFILES_CPUI_V, status:VALID, product: AR - Receivables , description: Organization Profiles , implementation_dba_data: APPS.HZ_ORG_PROFILES_CPUI_V ,
-
View: HZ_ORGANIZATION_PROFILES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AR.HZ_ORGANIZATION_PROFILES_V, object_name:HZ_ORGANIZATION_PROFILES_V, status:VALID, product: AR - Receivables , implementation_dba_data: APPS.HZ_ORGANIZATION_PROFILES_V ,
-
View: HZ_ORGANIZATION_PROFILES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AR.HZ_ORGANIZATION_PROFILES_V, object_name:HZ_ORGANIZATION_PROFILES_V, status:VALID, product: AR - Receivables , implementation_dba_data: APPS.HZ_ORGANIZATION_PROFILES_V ,
-
Lookup Type: PARTY_LOGICAL_ATTRIBUTE_LIST
12.1.1
product: AR - Receivables , meaning: Party Logical Entity Attribute List , description: List of Attributes that make up the Party Logical Entity ,
-
Lookup Type: PARTY_LOGICAL_ATTRIBUTE_LIST
12.2.2
product: AR - Receivables , meaning: Party Logical Entity Attribute List , description: List of Attributes that make up the Party Logical Entity ,