Search Results cz_config_details_v
Overview
CZ_CONFIG_DETAILS_V is a reporting and integration view owned by the APPS schema in Oracle E-Business Suite, delivered as part of the CZ – Configurator product. Its stated purpose is to provide the information required to use a saved configuration, presenting the component-level detail of configured items in a flattened, join-ready form. The view is registered as VALID in both Oracle EBS 12.1.1 and 12.2.2, and its definition has remained consistent across those releases.
Rather than exposing raw configuration tables directly, the view consolidates item-level records from a configuration header and its associated configuration items, applying filters that remove logically deleted and non-material rows. This makes it suitable for downstream reporting, order capture integration, and custom extensions that must resolve a saved configuration into its constituent components, quantities, and attributes without navigating the internal ETRM data model.
Underlying Base Objects
The view is defined over the following documented base objects:
- CZ_CONFIG_HDRS (referenced via synonym) — the configuration header table, supplying model instantiation context and header-level deletion status.
- CZ_CONFIG_ITEMS (referenced via synonym) — the configuration item table, supplying component, quantity, UOM, and attribute columns.
- CZ_UTILS (package) — used at parse time for its CONV_NUM function to convert the numeric sequence number.
Both tables are joined on configuration identity. The join is effectively driven by CZ_CONFIG_ITEMS, which supplies the header and revision keys, with CZ_CONFIG_HDRS contributing the MODEL_INSTANTIATION_TYPE attribute. The WHERE clause enforces non-deletion on both sides and requires a valid inventory item, organization, and positive quantity, so only actionable configuration lines are surfaced.
Key Columns
Prominent columns exposed by the view include:
- CONFIG_HDR_ID, CONFIG_REV_NBR — identify the configuration header and revision.
- CONFIG_ITEM_ID, PARENT_CONFIG_ITEM_ID — the configuration item and its parent in the configuration hierarchy.
- COMPONENT_CODE (NODE_IDENTIFIER) — the configurator node identifier for the component.
- INVENTORY_ITEM_ID, ORGANIZATION_ID — the inventory item and owning organization.
- QUANTITY (ITEM_NUM_VAL) and UOM_CODE — the configured quantity and unit of measure.
- QUOTEABLE_FLAG — NVL-normalized to '0' when null.
- SEQUENCE_NBR — converted via CZ_UTILS.CONV_NUM, with zero mapped to NULL.
- MODEL_INSTANTIATION_TYPE — sourced from the configuration header.
- LINE_TYPE, COMPONENT_INSTANCE_TYPE, CONFIG_DELTA — structural and delta-change attributes.
- USER_STR01–04, USER_NUM01–04 — user-defined descriptive and numeric attributes.
- DISCONTINUED_FLAG, RETURNED_FLAG, TANGIBLE_ITEM_FLAG, IB_TRACKABLE — status and tracking flags.
Common Use Cases and Queries
The view is typically queried to explode a saved configuration for reporting, order validation, or integration with external systems. A representative query retrieves all live components for a given configuration header:
- SELECT config_hdr_id, config_item_id, parent_config_item_id, component_code, inventory_item_id, quantity, uom_code FROM cz_config_details_v WHERE config_hdr_id = :p_header_id ORDER BY bom_sort_order;
- SELECT config_item_id, name, quoteable_flag, line_type FROM cz_config_details_v WHERE inventory_item_id = :p_item_id AND organization_id = :p_org_id;
- SELECT config_hdr_id, COUNT(*) FROM cz_config_details_v GROUP BY config_hdr_id; — used to determine component counts per configuration.
Typical scenarios include validating that a saved configuration contains only quoteable or tangible items before order import, reconciling model-to-instance component mappings, and feeding configuration detail into custom BI Publisher or OBIEE reporting. Because the view filters on non-deletion and required keys, it should be used as the standard read interface for configuration detail wherever a complete, defect-free component listing is required.
-
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 ,
-
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 ,
-
APPS.CZ_IB_LOCKING SQL Statements
12.2.2
-
APPS.CZ_IB_LOCKING SQL Statements
12.1.1
-
APPS.OE_CONFIG_PVT SQL Statements
12.1.1
-
APPS.ASO_CFG_INT SQL Statements
12.2.2
-
APPS.ASO_CFG_INT SQL Statements
12.1.1
-
PACKAGE BODY: APPS.CZ_IB_LOCKING
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:CZ_IB_LOCKING, status:VALID,
-
APPS.OE_CONFIG_TSO_PVT SQL Statements
12.1.1
-
PACKAGE BODY: APPS.CZ_IB_LOCKING
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:CZ_IB_LOCKING, status:VALID,
-
APPS.OE_CONFIG_PVT SQL Statements
12.2.2
-
APPS.OE_CONFIG_TSO_PVT SQL Statements
12.2.2
-
PACKAGE BODY: APPS.ASO_VALIDATE_CFG_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:ASO_VALIDATE_CFG_PVT, status:VALID,
-
PACKAGE BODY: APPS.ASO_CONFIG_OPERATIONS_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:ASO_CONFIG_OPERATIONS_PVT, status:VALID,
-
PACKAGE BODY: APPS.ASO_CONFIG_OPERATIONS_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:ASO_CONFIG_OPERATIONS_PVT, status:VALID,
-
PACKAGE BODY: APPS.CZ_RUNTIME
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:CZ_RUNTIME, status:VALID,
-
PACKAGE BODY: APPS.CZ_RUNTIME
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:CZ_RUNTIME, status:VALID,
-
SYNONYM: APPS.CZ_CONFIG_HDRS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:CZ_CONFIG_HDRS, status:VALID,
-
PACKAGE BODY: APPS.CZ_UPGRADE
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:CZ_UPGRADE, status:VALID,
-
PACKAGE BODY: APPS.OE_CONFIG_TSO_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:OE_CONFIG_TSO_PVT, status:VALID,
-
PACKAGE BODY: APPS.CZ_BOM_CONFIG_EXPLOSIONS_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:CZ_BOM_CONFIG_EXPLOSIONS_PKG, status:VALID,
-
PACKAGE BODY: APPS.CZ_BOM_CONFIG_EXPLOSIONS_PKG
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:CZ_BOM_CONFIG_EXPLOSIONS_PKG, status:VALID,
-
PACKAGE BODY: APPS.CZ_CF_API
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:CZ_CF_API, status:VALID,
-
SYNONYM: APPS.CZ_CONFIG_ITEMS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:CZ_CONFIG_ITEMS, status:VALID,
-
SYNONYM: APPS.CZ_CONFIG_HDRS
12.2.2
owner:APPS, object_type:SYNONYM, object_name:CZ_CONFIG_HDRS, status:VALID,
-
PACKAGE BODY: APPS.CZ_UPGRADE
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:CZ_UPGRADE, status:VALID,
-
SYNONYM: APPS.CZ_CONFIG_ITEMS
12.2.2
owner:APPS, object_type:SYNONYM, object_name:CZ_CONFIG_ITEMS, status:VALID,
-
PACKAGE BODY: APPS.IBE_QUOTE_SAVESHARE_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:IBE_QUOTE_SAVESHARE_PVT, status:VALID,
-
PACKAGE BODY: APPS.IBE_QUOTE_SAVESHARE_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IBE_QUOTE_SAVESHARE_PVT, status:VALID,
-
PACKAGE BODY: APPS.ASO_ATP_INT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:ASO_ATP_INT, status:VALID,
-
PACKAGE BODY: APPS.ASO_ATP_INT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:ASO_ATP_INT, status:VALID,
-
PACKAGE BODY: APPS.OE_CONFIG_TSO_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:OE_CONFIG_TSO_PVT, status:VALID,
-
VIEW: APPS.IBE_ORDER_DETAIL_V
12.2.2
-
PACKAGE BODY: APPS.ASO_CFG_INT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:ASO_CFG_INT, status:VALID,
-
PACKAGE BODY: APPS.OE_BULK_CONFIG_UTIL
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:OE_BULK_CONFIG_UTIL, status:VALID,
-
PACKAGE BODY: APPS.ASO_CFG_INT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:ASO_CFG_INT, status:VALID,
-
PACKAGE BODY: APPS.CSI_ITEM_INSTANCE_PUB
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:CSI_ITEM_INSTANCE_PUB, status:VALID,
-
VIEW: APPS.IBE_ORDER_DETAIL_V
12.1.1
-
PACKAGE BODY: APPS.OE_BULK_CONFIG_UTIL
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:OE_BULK_CONFIG_UTIL, status:VALID,
-
PACKAGE BODY: APPS.CZ_CF_API
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:CZ_CF_API, status:VALID,
-
PACKAGE BODY: APPS.ASO_VALIDATE_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:ASO_VALIDATE_PVT, status:VALID,
-
PACKAGE BODY: APPS.ASO_QUOTE_PUB
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:ASO_QUOTE_PUB, status:VALID,
-
PACKAGE BODY: APPS.CSI_ITEM_INSTANCE_PUB
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:CSI_ITEM_INSTANCE_PUB, status:VALID,
-
VIEW: APPS.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,
-
PACKAGE BODY: APPS.ASO_VALIDATE_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:ASO_VALIDATE_PVT, status:VALID,
-
VIEW: APPS.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,
-
PACKAGE BODY: APPS.OE_CONFIG_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:OE_CONFIG_PVT, status:VALID,
-
PACKAGE BODY: APPS.OE_CONFIG_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:OE_CONFIG_PVT, status:VALID,
-
PACKAGE BODY: APPS.OE_DEFAULT_LINE
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:OE_DEFAULT_LINE, status:VALID,
-
PACKAGE BODY: APPS.OE_DEFAULT_LINE
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:OE_DEFAULT_LINE, status:VALID,