Search Results cz_config_attributes
Overview
The CZ_CONFIG_ATTRIBUTES table is a core data object within the Oracle Configurator (CZ) module of Oracle E-Business Suite (EBS) 12.1.1 and 12.2.2. It functions as the master repository for storing attribute values assigned to configuration items during a runtime configuration session. This table is essential for capturing the detailed, user-selected specifications of a configured product, such as the color, size, or material of a component. The data stored here represents the final, instantiated output of the configurator engine, linking abstract model definitions to concrete transactional records for orders, quotes, or service requests.
Key Information Stored
The table's structure is designed to uniquely identify an attribute value within a specific configuration instance. Its primary key is a composite of five columns, ensuring precise data integrity. The most critical columns include:
- CONFIG_HDR_ID: The unique identifier for the configuration session header.
- CONFIG_REV_NBR: The revision number of the configuration, allowing for version control.
- CONFIG_ITEM_ID: The identifier for the specific item or component within the configuration.
- ATTRIBUTE_CATEGORY: A categorization for the attribute, often used for grouping or display purposes.
- ATTRIBUTE_CODE (implied by standard design): The specific attribute being defined (e.g., COLOR).
- ATTRIBUTE_NUMBER_VALUE / ATTRIBUTE_CHAR_VALUE / ATTRIBUTE_DATE_VALUE (implied by standard design): Columns holding the actual value of the attribute, typed appropriately.
Common Use Cases and Queries
This table is central to reporting and downstream processing of configured items. A common use case is extracting the complete bill of materials with specifications for transferring to an order management line. Another is auditing configuration history. A typical query pattern joins to the configuration header and items tables to retrieve a human-readable report.
SELECT cha.config_hdr_id, chi.item_name, ca.attribute_code, ca.attribute_char_value
FROM cz.cz_config_attributes ca,
cz.cz_config_items chi,
cz.cz_config_hdrs cha
WHERE ca.config_hdr_id = chi.config_hdr_id
AND ca.config_rev_nbr = chi.config_rev_nbr
AND ca.config_item_id = chi.config_item_id
AND ca.config_hdr_id = cha.config_hdr_id
AND cha.config_hdr_id = :p_config_hdr_id;
Related Objects
As indicated by the provided foreign key metadata, CZ_CONFIG_ATTRIBUTES has a direct and fundamental relationship with the CZ_CONFIG_ITEMS table. Each attribute record must correspond to a valid item instance within a configuration. The table is also intrinsically linked to CZ_CONFIG_HDRS, which provides the master context for the configuration session. In practice, it is frequently accessed via configurator runtime APIs and is a primary source for the CZ_CFG_ATTRIBUTES_V and similar reporting views that aggregate configuration data for business intelligence.
-
Table: CZ_CONFIG_ATTRIBUTES
12.2.2
owner:CZ, object_type:TABLE, fnd_design_data:CZ.CZ_CONFIG_ATTRIBUTES, object_name:CZ_CONFIG_ATTRIBUTES, status:VALID, product: CZ - Configurator , description: Configuration-Item Attributes table , implementation_dba_data: CZ.CZ_CONFIG_ATTRIBUTES ,
-
Table: CZ_CONFIG_ATTRIBUTES
12.1.1
owner:CZ, object_type:TABLE, fnd_design_data:CZ.CZ_CONFIG_ATTRIBUTES, object_name:CZ_CONFIG_ATTRIBUTES, status:VALID, product: CZ - Configurator , description: Configuration-Item Attributes table , implementation_dba_data: CZ.CZ_CONFIG_ATTRIBUTES ,
-
APPS.CZ_QC_MGR dependencies on CZ_CONFIG_ATTRIBUTES
12.2.2
-
APPS.CZ_CONFIG_API_PVT dependencies on CZ_CONFIG_ATTRIBUTES
12.2.2
-
APPS.CZ_CF_API dependencies on CZ_CONFIG_ATTRIBUTES
12.1.1
-
APPS.CZ_QC_MGR dependencies on CZ_CONFIG_ATTRIBUTES
12.1.1
-
APPS.CZ_CONFIG_API_PUB dependencies on CZ_CONFIG_ATTRIBUTES
12.1.1
-
APPS.CZ_CF_API dependencies on CZ_CONFIG_ATTRIBUTES
12.2.2
-
SYNONYM: APPS.CZ_CONFIG_ATTRIBUTES
12.2.2
owner:APPS, object_type:SYNONYM, object_name:CZ_CONFIG_ATTRIBUTES, status:VALID,
-
VIEW: APPS.CZ_CONFIG_ATTRIBUTES_DFV
12.1.1
-
VIEW: APPS.CZ_CONFIG_ATTRIBUTES_DFV
12.2.2
-
SYNONYM: APPS.CZ_CONFIG_ATTRIBUTES
12.1.1
owner:APPS, object_type:SYNONYM, object_name:CZ_CONFIG_ATTRIBUTES, status:VALID,
-
VIEW: CZ.CZ_CONFIG_ATTRIBUTES#
12.2.2
owner:CZ, object_type:VIEW, object_name:CZ_CONFIG_ATTRIBUTES#, status:VALID,
-
VIEW: CZ.CZ_CONFIG_ATTRIBUTES#
12.2.2
-
TRIGGER: APPS.CZ_CONFIG_ATTRIBUTES_T1
12.2.2
-
PACKAGE BODY: APPS.CZ_QC_MGR
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:CZ_QC_MGR, status:VALID,
-
Table: CZ_CONFIG_ITEMS
12.1.1
owner:CZ, object_type:TABLE, fnd_design_data:CZ.CZ_CONFIG_ITEMS, object_name:CZ_CONFIG_ITEMS, status:VALID, product: CZ - Configurator , description: Items selected for the configuration , implementation_dba_data: CZ.CZ_CONFIG_ITEMS ,
-
TRIGGER: APPS.CZ_CONFIG_ATTRIBUTES_T1
12.1.1
owner:APPS, object_type:TRIGGER, object_name:CZ_CONFIG_ATTRIBUTES_T1, status:VALID,
-
TRIGGER: APPS.CZ_CONFIG_ATTRIBUTES_T1
12.2.2
owner:APPS, object_type:TRIGGER, object_name:CZ_CONFIG_ATTRIBUTES_T1, status:VALID,
-
TRIGGER: APPS.CZ_CONFIG_ATTRIBUTES_T1
12.1.1
-
VIEW: APPS.CZ_CONFIG_ATTRIBUTES_DFV
12.1.1
owner:APPS, object_type:VIEW, object_name:CZ_CONFIG_ATTRIBUTES_DFV, status:VALID,
-
PACKAGE BODY: APPS.CZ_QC_MGR
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:CZ_QC_MGR, status:VALID,
-
VIEW: APPS.CZ_CONFIG_ATTRIBUTES_DFV
12.2.2
owner:APPS, object_type:VIEW, object_name:CZ_CONFIG_ATTRIBUTES_DFV, status:VALID,
-
PACKAGE BODY: APPS.CZ_CF_API
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:CZ_CF_API, status:VALID,
-
PACKAGE BODY: APPS.CZ_CONFIG_API_PUB
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:CZ_CONFIG_API_PUB, status:VALID,
-
PACKAGE BODY: APPS.CZ_CONFIG_API_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:CZ_CONFIG_API_PVT, status:VALID,
-
Table: CZ_CONFIG_ITEMS
12.2.2
owner:CZ, object_type:TABLE, fnd_design_data:CZ.CZ_CONFIG_ITEMS, object_name:CZ_CONFIG_ITEMS, status:VALID, product: CZ - Configurator , description: Items selected for the configuration , implementation_dba_data: CZ.CZ_CONFIG_ITEMS ,
-
APPS.CZ_CONFIG_API_PUB SQL Statements
12.1.1
-
APPS.CZ_CONFIG_API_PVT SQL Statements
12.2.2
-
PACKAGE BODY: APPS.CZ_CF_API
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:CZ_CF_API, status:VALID,
-
APPS.CZ_CONFIG_API_PUB dependencies on CZ_CONFIG_EXT_ATTRIBUTES
12.1.1
-
APPS.CZ_CONFIG_API_PVT dependencies on CZ_CONFIG_EXT_ATTRIBUTES
12.2.2
-
12.1.1 DBA Data
12.1.1
-
12.2.2 FND Design Data
12.2.2
-
12.2.2 DBA Data
12.2.2
-
12.1.1 FND Design Data
12.1.1
-
12.1.1 DBA Data
12.1.1
-
12.2.2 DBA Data
12.2.2
-
12.2.2 DBA Data
12.2.2
-
12.2.2 DBA Data
12.2.2
-
APPS.CZ_QC_MGR SQL Statements
12.1.1
-
APPS.CZ_QC_MGR SQL Statements
12.2.2
-
TABLE: CZ.CZ_CONFIG_ATTRIBUTES
12.2.2
owner:CZ, object_type:TABLE, fnd_design_data:CZ.CZ_CONFIG_ATTRIBUTES, object_name:CZ_CONFIG_ATTRIBUTES, status:VALID,
-
12.2.2 DBA Data
12.2.2
-
APPS.CZ_CONFIG_API_PUB dependencies on CZ_CONFIG_INPUTS
12.1.1
-
APPS.CZ_CONFIG_API_PVT dependencies on CZ_CONFIG_INPUTS
12.2.2
-
12.1.1 DBA Data
12.1.1
-
TABLE: CZ.CZ_CONFIG_ATTRIBUTES
12.1.1
owner:CZ, object_type:TABLE, fnd_design_data:CZ.CZ_CONFIG_ATTRIBUTES, object_name:CZ_CONFIG_ATTRIBUTES, status:VALID,
-
APPS.CZ_CONFIG_API_PUB dependencies on CZ_CONFIG_ITEMS
12.1.1
-
APPS.CZ_CONFIG_API_PVT dependencies on CZ_CONFIG_ITEMS
12.2.2