Search Results cz_config_hdrs
Overview
The CZ_CONFIG_HDRS table is the central configuration header table within the Oracle Configurator (CZ) module of Oracle E-Business Suite (EBS). It serves as the master record for every unique configuration session or saved configuration instance created within the system. Each row represents a specific configuration, capturing its essential metadata, lineage, and state. This table is fundamental to the Configurator's architecture, acting as the primary parent entity that links a configuration to its constituent items, inputs, messages, and related transactional data such as quotes and opportunities. Its role is critical for tracking the lifecycle of configured products throughout the order-to-cash process.
Key Information Stored
The table's primary key is a composite of CONFIG_HDR_ID and CONFIG_REV_NBR, enabling version control for configurations that may be revised. Key columns, as indicated by its foreign key relationships, store identifiers that establish critical linkages. These include COMPONENT_ID, linking to the configured model definition in CZ_PS_NODES; UI_DEF_ID, referencing the user interface definition in CZ_UI_DEFS; and OPPORTUNITY_HDR_ID, connecting the configuration to a sales opportunity in CZ_OPPORTUNITY_HDRS. It also tracks user context via USER_ID_FOR_WHOM_CREATED and USER_ID_CREATED, referencing the CZ_END_USERS table, and manages runtime context through EFFECTIVE_USAGE_ID, which points to CZ_MODEL_USAGES.
Common Use Cases and Queries
A primary use case is retrieving the complete details of a saved configuration for review, revision, or conversion to a quote line. Support and development teams often query this table to diagnose configuration issues by tracing a configuration's model and inputs. Common SQL patterns include joining to child detail tables to generate a comprehensive configuration bill of materials or to audit configuration history. For example:
- Finding all configurations for a specific opportunity:
SELECT * FROM cz_config_hdrs WHERE opportunity_hdr_id = <ID>; - Listing configurations created for a particular end user:
SELECT config_hdr_id, config_rev_nbr FROM cz_config_hdrs WHERE user_id_for_whom_created = <ID>; - Joining to child tables to report on a configuration's items:
SELECT h.*, i.* FROM cz_config_hdrs h, cz_config_items i WHERE h.config_hdr_id = i.config_hdr_id AND h.config_rev_nbr = i.config_rev_nbr AND h.config_hdr_id = <ID>;
Related Objects
As the core header table, CZ_CONFIG_HDRS has extensive relationships. It is referenced as a foreign key by numerous detail tables, including CZ_CONFIG_INPUTS (runtime user selections), CZ_CONFIG_ITEMS (output items and BOM), CZ_CONFIG_MESSAGES (validation and error messages), and CZ_QUOTE_MAIN_ITEMS (link to quoted items). It also references several master tables: CZ_PS_NODES (model structure), CZ_UI_DEFS (interface layout), CZ_OPPORTUNITY_HDRS (sales opportunity), CZ_END_USERS (users), and CZ_MODEL_USAGES (deployed model version). This network of relationships underscores its pivotal position in the Configurator's data model.
-
Table: CZ_CONFIG_HDRS
12.2.2
owner:CZ, object_type:TABLE, fnd_design_data:CZ.CZ_CONFIG_HDRS, object_name:CZ_CONFIG_HDRS, status:VALID, product: CZ - Configurator , description: Configuration header table , implementation_dba_data: CZ.CZ_CONFIG_HDRS ,
-
Table: CZ_CONFIG_HDRS
12.1.1
owner:CZ, object_type:TABLE, fnd_design_data:CZ.CZ_CONFIG_HDRS, object_name:CZ_CONFIG_HDRS, status:VALID, product: CZ - Configurator , description: Configuration header table , implementation_dba_data: CZ.CZ_CONFIG_HDRS ,
-
Table: CZ_END_USERS
12.1.1
owner:CZ, object_type:TABLE, fnd_design_data:CZ.CZ_END_USERS, object_name:CZ_END_USERS, status:VALID, product: CZ - Configurator , description: Oracle SellingPoint users , implementation_dba_data: CZ.CZ_END_USERS ,
-
Table: CZ_END_USERS
12.2.2
owner:CZ, object_type:TABLE, fnd_design_data:CZ.CZ_END_USERS, object_name:CZ_END_USERS, status:VALID, product: CZ - Configurator , description: Oracle SellingPoint users , implementation_dba_data: CZ.CZ_END_USERS ,
-
Table: CZ_CONFIG_MESSAGES
12.1.1
owner:CZ, object_type:TABLE, fnd_design_data:CZ.CZ_CONFIG_MESSAGES, object_name:CZ_CONFIG_MESSAGES, status:VALID, product: CZ - Configurator , description: Configuration messages , implementation_dba_data: CZ.CZ_CONFIG_MESSAGES ,
-
Table: CZ_CONFIG_MESSAGES
12.2.2
owner:CZ, object_type:TABLE, fnd_design_data:CZ.CZ_CONFIG_MESSAGES, object_name:CZ_CONFIG_MESSAGES, status:VALID, product: CZ - Configurator , description: Configuration messages , implementation_dba_data: CZ.CZ_CONFIG_MESSAGES ,
-
Table: CZ_MODEL_USAGES
12.2.2
owner:CZ, object_type:TABLE, fnd_design_data:CZ.CZ_MODEL_USAGES, object_name:CZ_MODEL_USAGES, status:VALID, product: CZ - Configurator , description: Usages table. Limited to 64 , implementation_dba_data: CZ.CZ_MODEL_USAGES ,
-
Table: CZ_QUOTE_MAIN_ITEMS
12.2.2
owner:CZ, object_type:TABLE, fnd_design_data:CZ.CZ_QUOTE_MAIN_ITEMS, object_name:CZ_QUOTE_MAIN_ITEMS, status:VALID, product: CZ - Configurator , description: OBSOLETE, listed items in quote , implementation_dba_data: CZ.CZ_QUOTE_MAIN_ITEMS ,
-
Table: CZ_UI_DEFS
12.2.2
owner:CZ, object_type:TABLE, fnd_design_data:CZ.CZ_UI_DEFS, object_name:CZ_UI_DEFS, status:VALID, product: CZ - Configurator , description: UI definition table , implementation_dba_data: CZ.CZ_UI_DEFS ,
-
Table: CZ_OPPORTUNITY_HDRS
12.2.2
owner:CZ, object_type:TABLE, fnd_design_data:CZ.CZ_OPPORTUNITY_HDRS, object_name:CZ_OPPORTUNITY_HDRS, status:VALID, product: CZ - Configurator , description: Opportunity headers for SellingPoint , implementation_dba_data: CZ.CZ_OPPORTUNITY_HDRS ,
-
Table: CZ_MODEL_USAGES
12.1.1
owner:CZ, object_type:TABLE, fnd_design_data:CZ.CZ_MODEL_USAGES, object_name:CZ_MODEL_USAGES, status:VALID, product: CZ - Configurator , description: Usages table. Limited to 64 , implementation_dba_data: CZ.CZ_MODEL_USAGES ,
-
Table: CZ_CONFIG_INPUTS
12.2.2
owner:CZ, object_type:TABLE, fnd_design_data:CZ.CZ_CONFIG_INPUTS, object_name:CZ_CONFIG_INPUTS, status:VALID, product: CZ - Configurator , description: User inputs while creating configuration , implementation_dba_data: CZ.CZ_CONFIG_INPUTS ,
-
Table: CZ_OPPORTUNITY_HDRS
12.1.1
owner:CZ, object_type:TABLE, fnd_design_data:CZ.CZ_OPPORTUNITY_HDRS, object_name:CZ_OPPORTUNITY_HDRS, status:VALID, product: CZ - Configurator , description: Opportunity headers for SellingPoint , implementation_dba_data: CZ.CZ_OPPORTUNITY_HDRS ,
-
Table: CZ_UI_DEFS
12.1.1
owner:CZ, object_type:TABLE, fnd_design_data:CZ.CZ_UI_DEFS, object_name:CZ_UI_DEFS, status:VALID, product: CZ - Configurator , description: UI definition table , implementation_dba_data: CZ.CZ_UI_DEFS ,
-
Table: CZ_QUOTE_MAIN_ITEMS
12.1.1
owner:CZ, object_type:TABLE, fnd_design_data:CZ.CZ_QUOTE_MAIN_ITEMS, object_name:CZ_QUOTE_MAIN_ITEMS, status:VALID, product: CZ - Configurator , description: OBSOLETE, listed items in quote , implementation_dba_data: CZ.CZ_QUOTE_MAIN_ITEMS ,
-
Table: CZ_CONFIG_INPUTS
12.1.1
owner:CZ, object_type:TABLE, fnd_design_data:CZ.CZ_CONFIG_INPUTS, object_name:CZ_CONFIG_INPUTS, status:VALID, product: CZ - Configurator , description: User inputs while creating configuration , implementation_dba_data: CZ.CZ_CONFIG_INPUTS ,
-
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 ,
-
View: CZ_CONFIG_HDRS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CZ.CZ_CONFIG_HDRS_V, object_name:CZ_CONFIG_HDRS_V, status:VALID, product: CZ - Configurator , description: Client view of Saved-Configuration headers , implementation_dba_data: APPS.CZ_CONFIG_HDRS_V ,
-
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 ,
-
View: CZ_CONFIG_HDRS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CZ.CZ_CONFIG_HDRS_V, object_name:CZ_CONFIG_HDRS_V, status:VALID, product: CZ - Configurator , description: Client view of Saved-Configuration headers , implementation_dba_data: APPS.CZ_CONFIG_HDRS_V ,
-
View: CZ_CONFIG_ITEMS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CZ.CZ_CONFIG_ITEMS_V, object_name:CZ_CONFIG_ITEMS_V, status:VALID, product: CZ - Configurator , description: Client (Installed-Base) view of CZ_CONFIG_ITEMS , implementation_dba_data: APPS.CZ_CONFIG_ITEMS_V ,
-
View: CZ_CONFIG_ITEMS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CZ.CZ_CONFIG_ITEMS_V, object_name:CZ_CONFIG_ITEMS_V, status:VALID, product: CZ - Configurator , description: Client (Installed-Base) view of CZ_CONFIG_ITEMS , implementation_dba_data: APPS.CZ_CONFIG_ITEMS_V ,
-
Table: CZ_PS_NODES
12.1.1
owner:CZ, object_type:TABLE, fnd_design_data:CZ.CZ_PS_NODES, object_name:CZ_PS_NODES, status:VALID, product: CZ - Configurator , description: Project structure nodes , implementation_dba_data: CZ.CZ_PS_NODES ,
-
View: CZ_CONFIG_DETAILS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CZ.CZ_CONFIG_DETAILS_V, object_name:CZ_CONFIG_DETAILS_V, status:VALID, product: CZ - Configurator , description: Information required to use a saved configuration , implementation_dba_data: APPS.CZ_CONFIG_DETAILS_V ,
-
View: CZ_CONFIG_DETAILS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CZ.CZ_CONFIG_DETAILS_V, object_name:CZ_CONFIG_DETAILS_V, status:VALID, product: CZ - Configurator , description: Information required to use a saved configuration , implementation_dba_data: APPS.CZ_CONFIG_DETAILS_V ,
-
Table: CZ_PS_NODES
12.2.2
owner:CZ, object_type:TABLE, fnd_design_data:CZ.CZ_PS_NODES, object_name:CZ_PS_NODES, status:VALID, product: CZ - Configurator , description: Project structure nodes , implementation_dba_data: CZ.CZ_PS_NODES ,