Search Results hz_entity_attributes_u1




Overview

The HZ_ENTITY_ATTRIBUTES table resides in the AR schema of the Oracle E-Business Suite TCA (Trading Community Architecture) registry and is deployed in both release 12.1.1 and 12.2.2. It stores the master configuration of entities and attributes that participate in the Third Party Data Integration setup, which governs how external data sources such as Dun & Bradstreet (D&B) populate the TCA registry. Each row represents one entity/attribute pairing available for third-party enrichment, together with administrative flags and standard WHO audit columns. All D&B related entities and attributes are seeded at installation, and the table is stored in the APPS_TS_SEED tablespace with a PCT Free of 10, reflecting its low-volatility, reference-data character.

From a dimensional modeling perspective, the mined relationship structure suggests classifying HZ_ENTITY_ATTRIBUTES as a hub: it is referenced by six dependent tables through the ENTITY_ATTR_ID foreign key, and it defines the canonical business identities (entity name plus attribute name) around which downstream integration rules and exceptions are organized.

Key Information Stored

The table contains 17 documented columns. The most significant are:

Two unique indexes function as business-key candidates. HZ_ENTITY_ATTRIBUTES_U1 covers (ENTITY_ATTR_ID, ZD_EDITION_NAME) and reinforces the surrogate key, while HZ_ENTITY_ATTRIBUTES_U2 covers (ENTITY_NAME, ATTRIBUTE_NAME, ZD_EDITION_NAME), establishing the natural business key that guarantees each entity/attribute combination is defined only once. The primary key constraint is HZ_ENTITY_ATTRIBUTES_PK on ENTITY_ATTR_ID.

Common Use Cases and Queries

Typical activity centers on configuration review and dependency analysis before integration runs. A common query lists all attributes for a given entity:

SELECT entity_attr_id, entity_name, attribute_name, attribute_group_name
FROM   hz_entity_attributes
WHERE  entity_name = :p_entity_name;

Administrators identify configuration pending propagation to the integration engine by filtering on the update flag:

SELECT entity_attr_id, entity_name, attribute_name
FROM   hz_entity_attributes
WHERE  updated_flag = 'Y';

Oracle Trading Community Architecture reports and the Third Party Data Integration concurrent programs reference this table to determine which TCA columns may be overwritten by purchased or externally sourced data. Impact analysis before disabling an attribute should join the dependent rule and exception tables to confirm no active rules reference the ENTITY_ATTR_ID.

Related Objects

Six documented tables reference HZ_ENTITY_ATTRIBUTES through ENTITY_ATTR_ID, each providing a distinct layer of integration control:

Together these objects form the configuration backbone of TCA third-party data integration and should be treated as a single logical unit during migration, cloning, and diagnostic review.