Search Results cz_config_usages
Overview
The CZ_CONFIG_USAGES table is a core data object within the Oracle E-Business Suite Configurator (CZ) module. It functions as a transactional audit log, systematically recording each instance where a specific configuration item is utilized by a client application. Its primary role is to establish and maintain traceability between the configurable components defined within the Configurator and their practical application across the EBS suite, such as within Order Management or Service contracts. This linkage is critical for understanding configuration dependencies, supporting lifecycle management of configuration data, and ensuring referential integrity when configurations are modified or purged.
Key Information Stored
The table's structure is designed to uniquely identify a usage event by combining identifiers for the calling application, the specific configuration header, and the individual configuration item. The primary key columns are CALLING_APPLICATION_ID, CALLING_APPLICATION_REF_KEY, CONFIG_HDR_ID, CONFIG_ITEM_ID, and CONFIG_REV_NBR. These columns store the application identifier (e.g., for OM or Service), a reference key from that application (like a line ID), the unique identifier for the configuration model header (CZ_CONFIG_HEADERS), the identifier for a specific item within that configuration (CZ_CONFIG_ITEMS), and the revision number of that configuration item. This composite key ensures a single usage of a specific item revision by a specific application transaction is recorded once.
Common Use Cases and Queries
A primary use case is impact analysis before deleting obsolete configuration data. Administrators can query this table to verify if a configuration item is still referenced in transactional systems. Another common scenario is generating reports to analyze which configurations are most frequently used across different business flows. Sample SQL patterns often involve joins to the related CZ_CONFIG_ITEMS and CZ_CONFIG_HEADERS tables to retrieve descriptive information.
- Finding all usages for a specific configuration item:
SELECT * FROM cz.cz_config_usages WHERE config_item_id = <item_id>; - Identifying which order lines reference a given configuration:
SELECT calling_application_ref_key FROM cz.cz_config_usages WHERE calling_application_id = 'OM' AND config_hdr_id = <hdr_id>;
Related Objects
The CZ_CONFIG_USAGES table has a defined foreign key relationship with the CZ_CONFIG_ITEMS table, which is central to its integrity. The foreign key constraint enforces that a recorded usage must point to a valid, existing configuration item. The join is performed on three columns, reflecting the composite nature of the configuration item's identity:
- Foreign Key Table: CZ_CONFIG_USAGES
- Primary Key Table: CZ_CONFIG_ITEMS
- Join Columns: CZ_CONFIG_USAGES.CONFIG_HDR_ID = CZ_CONFIG_ITEMS.CONFIG_HDR_ID, CZ_CONFIG_USAGES.CONFIG_REV_NBR = CZ_CONFIG_ITEMS.CONFIG_REV_NBR, and CZ_CONFIG_USAGES.CONFIG_ITEM_ID = CZ_CONFIG_ITEMS.CONFIG_ITEM_ID
This relationship ensures that usages cannot exist for configuration items that have been deleted, maintaining data consistency within the Configurator module.
-
Table: CZ_CONFIG_USAGES
12.1.1
owner:CZ, object_type:TABLE, fnd_design_data:CZ.CZ_CONFIG_USAGES, object_name:CZ_CONFIG_USAGES, status:VALID, product: CZ - Configurator , description: Records uses of configuration items by client applications , implementation_dba_data: CZ.CZ_CONFIG_USAGES ,
-
Table: CZ_CONFIG_USAGES
12.2.2
owner:CZ, object_type:TABLE, fnd_design_data:CZ.CZ_CONFIG_USAGES, object_name:CZ_CONFIG_USAGES, status:VALID, product: CZ - Configurator , description: Records uses of configuration items by client applications , implementation_dba_data: CZ.CZ_CONFIG_USAGES ,
-
APPS.CZ_CF_API dependencies on CZ_CONFIG_USAGES
12.2.2
-
APPS.CZ_CF_API dependencies on CZ_CONFIG_USAGES
12.1.1
-
SYNONYM: APPS.CZ_CONFIG_USAGES
12.1.1
owner:APPS, object_type:SYNONYM, object_name:CZ_CONFIG_USAGES, status:VALID,
-
SYNONYM: APPS.CZ_CONFIG_USAGES
12.2.2
owner:APPS, object_type:SYNONYM, object_name:CZ_CONFIG_USAGES, status:VALID,
-
VIEW: CZ.CZ_CONFIG_USAGES#
12.2.2
-
VIEW: CZ.CZ_CONFIG_USAGES#
12.2.2
owner:CZ, object_type:VIEW, object_name:CZ_CONFIG_USAGES#, status:VALID,
-
TABLE: CZ.CZ_CONFIG_USAGES
12.2.2
owner:CZ, object_type:TABLE, fnd_design_data:CZ.CZ_CONFIG_USAGES, object_name:CZ_CONFIG_USAGES, status:VALID,
-
TRIGGER: APPS.CZ_CONFIG_USAGES_T1
12.1.1
-
TRIGGER: APPS.CZ_CONFIG_USAGES_T1
12.2.2
owner:APPS, object_type:TRIGGER, object_name:CZ_CONFIG_USAGES_T1, 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 ,
-
TABLE: CZ.CZ_CONFIG_USAGES
12.1.1
owner:CZ, object_type:TABLE, fnd_design_data:CZ.CZ_CONFIG_USAGES, object_name:CZ_CONFIG_USAGES, status:VALID,
-
PACKAGE BODY: APPS.CZ_CF_API
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:CZ_CF_API, status:VALID,
-
TRIGGER: APPS.CZ_CONFIG_USAGES_T1
12.1.1
owner:APPS, object_type:TRIGGER, object_name:CZ_CONFIG_USAGES_T1, status:VALID,
-
PACKAGE BODY: APPS.CZ_CF_API
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:CZ_CF_API, status:VALID,
-
TRIGGER: APPS.CZ_CONFIG_USAGES_T1
12.2.2
-
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 ,
-
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.2.2 DBA Data
12.2.2
-
12.2.2 DBA 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.1.1 DBA Data
12.1.1
-
APPS.CZ_CF_API SQL Statements
12.1.1
-
APPS.CZ_MIGRATE dependencies on CZ_JRAD_CHUNKS
12.2.2
-
APPS.CZ_MIGRATE dependencies on CZ_JRAD_CHUNKS
12.1.1
-
APPS.CZ_CF_API SQL Statements
12.2.2
-
APPS.CZ_MIGRATE SQL Statements
12.1.1
-
APPS.CZ_MIGRATE SQL Statements
12.2.2
-
APPS.CZ_MIGRATE dependencies on CZ_XFR_TABLES
12.2.2
-
APPS.CZ_MIGRATE dependencies on CZ_XFR_TABLES
12.1.1
-
PACKAGE BODY: APPS.CZ_MIGRATE
12.2.2
-
PACKAGE BODY: APPS.CZ_MIGRATE
12.1.1
-
PACKAGE BODY: APPS.CZ_CF_API
12.1.1
-
eTRM - CZ Tables and Views
12.2.2
description: Import control table responsible for NOUPDATE flags ,
-
eTRM - CZ Tables and Views
12.1.1
description: Import control table responsible for NOUPDATE flags ,
-
PACKAGE BODY: APPS.CZ_CF_API
12.2.2
-
12.2.2 DBA Data
12.2.2
-
eTRM - CZ Tables and Views
12.1.1
description: Import control table responsible for NOUPDATE flags ,
-
eTRM - CZ Tables and Views
12.2.2
description: Import control table responsible for NOUPDATE flags ,
-
12.1.1 DBA Data
12.1.1