Search Results hz_entity_attributes
Overview
HZ_ENTITY_ATTRIBUTES is a Receivables (AR) schema table that stores entity and attribute metadata consumed by Oracle's Third Party Data Integration framework. In Oracle EBS 12.1.1 and 12.2.2, this table serves as the central registry of entity-attribute pairs that govern how third-party data is selected, transformed, matched, and written into the Trading Community Architecture (TCA) model. Each row defines a discrete combination of a business entity (such as a party, account, or contact) and an attribute name, and acts as the anchor point for downstream rules and configuration that reference that specific pair.
Because multiple dependent tables — including data source selections, exception lists, and create/overwrite rules — resolve their foreign keys back to ENTITY_ATTR_ID, the table functions as a lookup or reference hub. In Data Vault terms, mining the foreign-key structure suggests treating HZ_ENTITY_ATTRIBUTES as a hub, with each dependent table representing a satellite or link that carries descriptive, rule-specific, or temporal context around the hub key.
Key Information Stored
Of the 17 documented columns, the most operationally significant are:
- ENTITY_ATTR_ID — The surrogate primary key (HZ_ENTITY_ATTRIBUTES_PK) that uniquely identifies every entity-attribute row and is the column carried by all child foreign keys. It is also the first component of unique index HZ_ENTITY_ATTRIBUTES_U1.
- ENTITY_NAME — The business entity being described (for example, a party or account object). Combined with ATTRIBUTE_NAME, it forms the business-key candidate captured by unique index HZ_ENTITY_ATTRIBUTES_U2.
- ATTRIBUTE_NAME — The specific attribute that belongs to the entity; together with ENTITY_NAME it identifies the attribute in business terms.
- ATTRIBUTE_GROUP_NAME — A grouping label used to organize related attributes for presentation and rule configuration.
- UPDATED_FLAG — Indicates whether the attribute definition has been updated, supporting incremental processing in the integration pipeline.
- CREATED_BY_MODULE and APPLICATION_ID — Identify the owning module and application that produced the row.
- ZD_EDITION_NAME — The editioning column introduced in the 12.2 architecture, included in both unique indexes so that rows are version-scoped by edition.
The remaining documented columns (CREATED_BY, CREATION_DATE, LAST_UPDATE_LOGIN, LAST_UPDATE_DATE, LAST_UPDATED_BY, REQUEST_ID, PROGRAM_APPLICATION_ID, PROGRAM_ID, PROGRAM_UPDATE_DATE) are standard WHO/audit and concurrent-program columns that provide traceability for every insert and update.
Common Use Cases and Queries
Typical scenarios include auditing the set of entity-attribute definitions available in an instance, identifying which attributes have pending updates, and tracing which rules and data sources reference a given attribute. A representative query lists the business keys:
SELECT ENTITY_ATTR_ID, ENTITY_NAME, ATTRIBUTE_NAME, ATTRIBUTE_GROUP_NAME, UPDATED_FLAG FROM AR.HZ_ENTITY_ATTRIBUTES WHERE UPDATED_FLAG = 'Y';- To find unprocessed attributes, filter on UPDATED_FLAG and CREATION_DATE or LAST_UPDATE_DATE ranges during an integration run.
- To determine rule coverage, join to the dependent rule tables on ENTITY_ATTR_ID (see Related Objects) and group by ENTITY_NAME and ATTRIBUTE_NAME.
- For currency of definitions, order by LAST_UPDATE_DATE and inspect LAST_UPDATED_BY, REQUEST_ID, and PROGRAM_ID to attribute changes to a specific concurrent request.
Related Objects
Six documented tables carry ENTITY_ATTR_ID as a foreign key to HZ_ENTITY_ATTRIBUTES, making them the principal dependents:
- HZ_SELECT_DATA_SOURCES (ENTITY_ATTR_ID) — defines the source from which attribute data is selected.
- HZ_THIRDPARTY_RULE (ENTITY_ATTR_ID) — the governing rules applied to third-party attributes.
- HZ_THIRDPARTY_EXCEPS (ENTITY_ATTR_ID) — exceptions to third-party processing for specific attributes.
- HZ_USER_CREATE_RULES (ENTITY_ATTR_ID) — rules controlling attribute creation by users.
- HZ_USER_OVERWRITE_RULES (ENTITY_ATTR_ID) — rules controlling overwrite behavior for attribute values.
- HZ_WIN_SOURCE_EXCEPS (ENTITY_ATTR_ID) — source-level exception handling within the winning-source logic.
Queries joining HZ_ENTITY_ATTRIBUTES to these tables on ENTITY_ATTR_ID provide a complete view of how each entity-attribute pair is sourced, governed, and excepted within the Third Party Data Integration flow.
-
Table: HZ_ENTITY_ATTRIBUTES
12.1.1
owner:AR, object_type:TABLE, fnd_design_data:AR.HZ_ENTITY_ATTRIBUTES, object_name:HZ_ENTITY_ATTRIBUTES, status:VALID, product: AR - Receivables , description: Entities and Attribute information used by Third Party Data Integration. , implementation_dba_data: AR.HZ_ENTITY_ATTRIBUTES ,
-
Table: HZ_ENTITY_ATTRIBUTES
12.2.2
owner:AR, object_type:TABLE, fnd_design_data:AR.HZ_ENTITY_ATTRIBUTES, object_name:HZ_ENTITY_ATTRIBUTES, status:VALID, product: AR - Receivables , description: Entities and Attribute information used by Third Party Data Integration. , implementation_dba_data: AR.HZ_ENTITY_ATTRIBUTES ,
-
VIEW: AR.HZ_ENTITY_ATTRIBUTES#
12.2.2
owner:AR, object_type:VIEW, object_name:HZ_ENTITY_ATTRIBUTES#, status:VALID,
-
SYNONYM: APPS.HZ_ENTITY_ATTRIBUTES
12.2.2
owner:APPS, object_type:SYNONYM, object_name:HZ_ENTITY_ATTRIBUTES, status:VALID,
-
SYNONYM: APPS.HZ_ENTITY_ATTRIBUTES
12.1.1
owner:APPS, object_type:SYNONYM, object_name:HZ_ENTITY_ATTRIBUTES, status:VALID,
-
TRIGGER: APPS.HZ_ENTITY_ATTRIBUTES+
12.2.2
-
TRIGGER: APPS.HZ_ENTITY_ATTRIBUTES+
12.2.2
owner:APPS, object_type:TRIGGER, object_name:HZ_ENTITY_ATTRIBUTES+, status:VALID,
-
APPS.HZ_MIXNM_DYNAMIC_PKG_GENERATOR SQL Statements
12.1.1
-
VIEW: AR.HZ_ENTITY_ATTRIBUTES#
12.2.2
-
APPS.HZ_MIXNM_DYNAMIC_PKG_GENERATOR SQL Statements
12.2.2
-
APPS.HZ_MIXNM_UTILITY SQL Statements
12.2.2
-
TABLE: AR.HZ_SELECT_DATA_SOURCES
12.1.1
owner:AR, object_type:TABLE, fnd_design_data:AR.HZ_SELECT_DATA_SOURCES, object_name:HZ_SELECT_DATA_SOURCES, status:VALID,
-
TABLE: AR.HZ_SELECT_DATA_SOURCES
12.2.2
owner:AR, object_type:TABLE, fnd_design_data:AR.HZ_SELECT_DATA_SOURCES, object_name:HZ_SELECT_DATA_SOURCES, status:VALID,
-
APPS.HZ_MIXNM_UTILITY SQL Statements
12.1.1
-
APPS.HZ_MIXNM_REGISTRY_PUB SQL Statements
12.1.1
-
TABLE: AR.HZ_ENTITY_ATTRIBUTES
12.1.1
owner:AR, object_type:TABLE, fnd_design_data:AR.HZ_ENTITY_ATTRIBUTES, object_name:HZ_ENTITY_ATTRIBUTES, status:VALID,
-
TABLE: AR.HZ_ENTITY_ATTRIBUTES
12.2.2
owner:AR, object_type:TABLE, fnd_design_data:AR.HZ_ENTITY_ATTRIBUTES, object_name:HZ_ENTITY_ATTRIBUTES, status:VALID,
-
Table: HZ_THIRDPARTY_RULE
12.2.2
owner:AR, object_type:TABLE, fnd_design_data:AR.HZ_THIRDPARTY_RULE, object_name:HZ_THIRDPARTY_RULE, status:VALID, product: AR - Receivables , description: Overwrite rules for specific attributes for Third Party Data Integration. , implementation_dba_data: AR.HZ_THIRDPARTY_RULE ,
-
Table: HZ_USER_OVERWRITE_RULES
12.2.2
owner:AR, object_type:TABLE, fnd_design_data:AR.HZ_USER_OVERWRITE_RULES, object_name:HZ_USER_OVERWRITE_RULES, status:VALID, product: AR - Receivables , description: User overwrite rules for Third Party Data Integration. , implementation_dba_data: AR.HZ_USER_OVERWRITE_RULES ,
-
Table: HZ_USER_CREATE_RULES
12.2.2
owner:AR, object_type:TABLE, fnd_design_data:AR.HZ_USER_CREATE_RULES, object_name:HZ_USER_CREATE_RULES, status:VALID, product: AR - Receivables , description: User data creation rules for Third Party Data Integration. , implementation_dba_data: AR.HZ_USER_CREATE_RULES ,
-
Table: HZ_THIRDPARTY_RULE
12.1.1
owner:AR, object_type:TABLE, fnd_design_data:AR.HZ_THIRDPARTY_RULE, object_name:HZ_THIRDPARTY_RULE, status:VALID, product: AR - Receivables , description: Overwrite rules for specific attributes for Third Party Data Integration. , implementation_dba_data: AR.HZ_THIRDPARTY_RULE ,
-
FUNCTION: APPS.HZ_ENTITY_ATTRIBUTES=
12.2.2
-
Table: HZ_SELECT_DATA_SOURCES
12.1.1
owner:AR, object_type:TABLE, fnd_design_data:AR.HZ_SELECT_DATA_SOURCES, object_name:HZ_SELECT_DATA_SOURCES, status:VALID, product: AR - Receivables , description: Selected data sources for Third Party Data Integration. , implementation_dba_data: AR.HZ_SELECT_DATA_SOURCES ,
-
Table: HZ_SELECT_DATA_SOURCES
12.2.2
owner:AR, object_type:TABLE, fnd_design_data:AR.HZ_SELECT_DATA_SOURCES, object_name:HZ_SELECT_DATA_SOURCES, status:VALID, product: AR - Receivables , description: Selected data sources for Third Party Data Integration. , implementation_dba_data: AR.HZ_SELECT_DATA_SOURCES ,
-
APPS.HZ_MIXNM_REGISTRY_PUB SQL Statements
12.2.2
-
FUNCTION: APPS.HZ_ENTITY_ATTRIBUTES=
12.2.2
owner:APPS, object_type:FUNCTION, object_name:HZ_ENTITY_ATTRIBUTES=, status:VALID,
-
Table: HZ_THIRDPARTY_EXCEPS
12.2.2
owner:AR, object_type:TABLE, fnd_design_data:AR.HZ_THIRDPARTY_EXCEPS, object_name:HZ_THIRDPARTY_EXCEPS, status:VALID, product: AR - Receivables , description: Exceptions to overwrite rules for specific attributes of specific parties for Third Party Data Integration. , implementation_dba_data: AR.HZ_THIRDPARTY_EXCEPS ,
-
Table: HZ_THIRDPARTY_EXCEPS
12.1.1
owner:AR, object_type:TABLE, fnd_design_data:AR.HZ_THIRDPARTY_EXCEPS, object_name:HZ_THIRDPARTY_EXCEPS, status:VALID, product: AR - Receivables , description: Exceptions to overwrite rules for specific attributes of specific parties for Third Party Data Integration. , implementation_dba_data: AR.HZ_THIRDPARTY_EXCEPS ,
-
Table: HZ_WIN_SOURCE_EXCEPS
12.2.2
owner:AR, object_type:TABLE, fnd_design_data:AR.HZ_WIN_SOURCE_EXCEPS, object_name:HZ_WIN_SOURCE_EXCEPS, status:VALID, product: AR - Receivables , description: Stores attribute exception information if data are overwritten contrary to the Third Party Data Integration data source ranking. , implementation_dba_data: AR.HZ_WIN_SOURCE_EXCEPS ,
-
Table: HZ_USER_OVERWRITE_RULES
12.1.1
owner:AR, object_type:TABLE, fnd_design_data:AR.HZ_USER_OVERWRITE_RULES, object_name:HZ_USER_OVERWRITE_RULES, status:VALID, product: AR - Receivables , description: User overwrite rules for Third Party Data Integration. , implementation_dba_data: AR.HZ_USER_OVERWRITE_RULES ,
-
Table: HZ_USER_CREATE_RULES
12.1.1
owner:AR, object_type:TABLE, fnd_design_data:AR.HZ_USER_CREATE_RULES, object_name:HZ_USER_CREATE_RULES, status:VALID, product: AR - Receivables , description: User data creation rules for Third Party Data Integration. , implementation_dba_data: AR.HZ_USER_CREATE_RULES ,
-
Table: HZ_WIN_SOURCE_EXCEPS
12.1.1
owner:AR, object_type:TABLE, fnd_design_data:AR.HZ_WIN_SOURCE_EXCEPS, object_name:HZ_WIN_SOURCE_EXCEPS, status:VALID, product: AR - Receivables , description: Stores attribute exception information if data are overwritten contrary to the Third Party Data Integration data source ranking. , implementation_dba_data: AR.HZ_WIN_SOURCE_EXCEPS ,
-
PACKAGE BODY: APPS.HZ_MIXNM_WEBUI_UTILITY
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:HZ_MIXNM_WEBUI_UTILITY, status:VALID,
-
PACKAGE BODY: APPS.HZ_MIXNM_DYNAMIC_PKG_GENERATOR
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:HZ_MIXNM_DYNAMIC_PKG_GENERATOR, status:VALID,
-
PACKAGE BODY: APPS.HZ_MIXNM_DYNAMIC_PKG_GENERATOR
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:HZ_MIXNM_DYNAMIC_PKG_GENERATOR, status:VALID,
-
PACKAGE BODY: APPS.HZ_MIXNM_WEBUI_UTILITY
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:HZ_MIXNM_WEBUI_UTILITY, status:VALID,
-
APPS.HZ_MIXNM_WEBUI_UTILITY SQL Statements
12.2.2
-
PACKAGE BODY: APPS.HZ_MIXNM_REGISTRY_PUB
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:HZ_MIXNM_REGISTRY_PUB, status:VALID,
-
APPS.HZ_MIXNM_WEBUI_UTILITY SQL Statements
12.1.1
-
PACKAGE BODY: APPS.HZ_MIXNM_REGISTRY_PUB
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:HZ_MIXNM_REGISTRY_PUB, status:VALID,
-
PACKAGE BODY: APPS.HZ_MIXNM_UTILITY
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:HZ_MIXNM_UTILITY, status:VALID,
-
PACKAGE BODY: APPS.HZ_ORIG_SYSTEM_REF_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:HZ_ORIG_SYSTEM_REF_PVT, status:VALID,
-
PACKAGE BODY: APPS.HZ_ORIG_SYSTEM_REF_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:HZ_ORIG_SYSTEM_REF_PVT, status:VALID,
-
PACKAGE BODY: APPS.HZ_MIXNM_UTILITY
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:HZ_MIXNM_UTILITY, status:VALID,
-
PACKAGE BODY: APPS.HZ_CUSTOMER_INT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:HZ_CUSTOMER_INT, status:VALID,
-
PACKAGE BODY: APPS.HZ_CUSTOMER_INT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:HZ_CUSTOMER_INT, status:VALID,
-
TABLE: AR.HZ_WIN_SOURCE_EXCEPS
12.2.2
owner:AR, object_type:TABLE, fnd_design_data:AR.HZ_WIN_SOURCE_EXCEPS, object_name:HZ_WIN_SOURCE_EXCEPS, status:VALID,
-
TABLE: AR.HZ_WIN_SOURCE_EXCEPS
12.1.1
owner:AR, object_type:TABLE, fnd_design_data:AR.HZ_WIN_SOURCE_EXCEPS, object_name:HZ_WIN_SOURCE_EXCEPS, status:VALID,
-
PACKAGE BODY: APPS.HZ_MIXNM_DYNAMIC_PKG_GENERATOR
12.1.1
-
PACKAGE BODY: APPS.HZ_MIXNM_DYNAMIC_PKG_GENERATOR
12.2.2