Search Results cz_config_items_v
Overview
CZ_CONFIG_ITEMS_V is an APPS-owned database view in the Oracle EBS Configurator (CZ) product family. It is documented as the client (installed-base) view of the CZ_CONFIG_ITEMS table. In release 12.1.1 and 12.2.2 the object carries a VALID status and remains available for read access to configuration item data without exposing the underlying transactional table directly. Its primary role is to provide a stable, filtered projection of configured items that reporting, extensions, and integration logic can query. Because it joins CZ_CONFIG_ITEMS to CZ_CONFIG_HDRS and filters on DELETED_FLAG = '0', consumers of the view see only active configuration items that belong to a valid configuration header revision. This makes the view suitable for installed-base (IB) reporting, where records must reflect live configuration state rather than rows historically marked for deletion.
Underlying Base Objects
The view is defined over two base objects referenced through APPS synonyms: CZ_CONFIG_ITEMS and CZ_CONFIG_HDRS. The dependency is an inner join on CONFIG_HDR_ID and CONFIG_REV_NBR, ensuring each returned item is anchored to a matching configuration header revision. Filtering on A.DELETED_FLAG = '0' restricts output to non-deleted configuration item rows. The view therefore inherits the column structure of CZ_CONFIG_ITEMS while adding MODEL_INSTANTIATION_TYPE from CZ_CONFIG_HDRS. No alternative or external source tables are referenced, so the view represents a straightforward, condition-filtered join rather than an aggregation or transformation. Any change to the two base tables propagates to the view on the next query execution.
Key Columns
- CONFIG_HDR_ID / CONFIG_REV_NBR — Configuration header identifier and revision; the join keys that link an item to its configuration.
- CONFIG_ITEM_ID / PARENT_CONFIG_ITEM_ID — Unique configuration item identifier and its parent, defining the configuration hierarchy.
- NODE_IDENTIFIER — Node identifier associated with the configuration item, a frequently referenced key for tracing model nodes. This column is the reason the object is often retrieved when searching on "node_identifier."
- PS_NODE_ID / PS_NODE_NAME — Property/selection node identifier and name for the configuration node.
- VALUE_TYPE_CODE / ITEM_VAL / ITEM_NUM_VAL — Value type plus the character form of the item value, computed as NVL(ITEM_VAL, TO_CHAR(ITEM_NUM_VAL)) so numeric values are exposed as text.
- INVENTORY_ITEM_ID / ORGANIZATION_ID — Inventory item and organization to which the configuration item corresponds.
- MODEL_INSTANTIATION_TYPE — Sourced from the header table, indicating how the model was instantiated.
- INSTANCE_NBR, INSTANCE_HDR_ID, TARGET_CONFIG_ITEM_ID, TARGET_HDR_ID — Instance and target references used in IB and delta tracking.
- DISCONTINUED_FLAG, RETURNED_FLAG, QUOTEABLE_FLAG, TANGIBLE_ITEM_FLAG, IB_TRACKABLE — Status flags describing item life cycle and installed-base tracking.
Common Use Cases and Queries
Typical scenarios include installed-base reporting, configuration validation, and custom extensions that need node-level configuration detail. A common query filters on the node identifier to locate a specific configuration item and its attributes:
SELECT config_item_id, config_hdr_id, config_rev_nbr, node_identifier, item_val, inventory_item_id, organization_id FROM cz_config_items_v WHERE node_identifier = :p_node_identifier;
To review all active items for a single configuration revision:
SELECT config_item_id, parent_config_item_id, name, item_val, model_instantiation_type FROM cz_config_items_v WHERE config_hdr_id = :p_hdr_id AND config_rev_nbr = :p_rev ORDER BY sequence_nbr;
The view may also be joined to CZ_CONFIG_HDRS, inventory tables, or BOM structures when building installed-base reports, since it already excludes deleted items and supplies header-level instantiation context.
-
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 ,
-
APPS.CZ_IB_TRANSACTIONS SQL Statements
12.1.1
-
APPS.CZ_IB_TRANSACTIONS SQL Statements
12.2.2
-
PACKAGE BODY: APPS.CSI_T_TXN_RLTNSHPS_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:CSI_T_TXN_RLTNSHPS_PVT, status:VALID,
-
PACKAGE BODY: APPS.CSI_CZ_INT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:CSI_CZ_INT, status:VALID,
-
PACKAGE BODY: APPS.CSI_T_TXN_RLTNSHPS_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:CSI_T_TXN_RLTNSHPS_PVT, status:VALID,
-
PACKAGE BODY: APPS.CZ_IB_TRANSACTIONS
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:CZ_IB_TRANSACTIONS, status:VALID,
-
PACKAGE BODY: APPS.CZ_IB_TRANSACTIONS
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:CZ_IB_TRANSACTIONS, status:VALID,
-
PACKAGE BODY: APPS.CSI_T_TXN_LINE_DTLS_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:CSI_T_TXN_LINE_DTLS_PVT, status:VALID,
-
SYNONYM: APPS.CZ_CONFIG_HDRS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:CZ_CONFIG_HDRS, status:VALID,
-
SYNONYM: APPS.CZ_CONFIG_ITEMS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:CZ_CONFIG_ITEMS, status:VALID,
-
PACKAGE BODY: APPS.CSI_T_VLDN_ROUTINES_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:CSI_T_VLDN_ROUTINES_PVT, 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.CSI_T_VLDN_ROUTINES_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:CSI_T_VLDN_ROUTINES_PVT, 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.CSI_CZ_INT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:CSI_CZ_INT, status:VALID,
-
PACKAGE BODY: APPS.CSI_T_TXN_LINE_DTLS_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:CSI_T_TXN_LINE_DTLS_PVT, 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,
-
PACKAGE BODY: APPS.CSI_ITEM_INSTANCE_PUB
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:CSI_ITEM_INSTANCE_PUB, status:VALID,
-
APPS.CSI_T_TXN_RLTNSHPS_PVT SQL Statements
12.1.1
-
PACKAGE BODY: APPS.OKC_XPRT_UTIL_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:OKC_XPRT_UTIL_PVT, status:VALID,
-
PACKAGE BODY: APPS.CSI_INTERFACE_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:CSI_INTERFACE_PKG, status:VALID,
-
PACKAGE BODY: APPS.OKC_XPRT_UTIL_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:OKC_XPRT_UTIL_PVT, status:VALID,
-
PACKAGE BODY: APPS.CSI_INTERFACE_PKG
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:CSI_INTERFACE_PKG, status:VALID,
-
APPS.CSI_T_TXN_RLTNSHPS_PVT SQL Statements
12.2.2
-
12.1.1 FND Design Data
12.1.1
-
12.2.2 FND Design Data
12.2.2
-
12.2.2 DBA Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
APPS.CSI_T_VLDN_ROUTINES_PVT SQL Statements
12.1.1
-
APPS.CSI_T_VLDN_ROUTINES_PVT SQL Statements
12.2.2
-
APPS.OKC_XPRT_UTIL_PVT SQL Statements
12.1.1
-
APPS.OKC_XPRT_UTIL_PVT SQL Statements
12.2.2
-
APPS.CSI_ITEM_INSTANCE_PUB SQL Statements
12.2.2
-
VIEW: APPS.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,
-
APPS.CSI_ITEM_INSTANCE_PUB SQL Statements
12.1.1
-
APPS.CSI_CZ_INT SQL Statements
12.2.2
-
APPS.CSI_CZ_INT SQL Statements
12.1.1
-
VIEW: APPS.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,
-
APPS.CSI_T_TXN_LINE_DTLS_PVT dependencies on CZ_CONFIG_ITEMS_V
12.2.2
-
APPS.CSI_CZ_INT dependencies on CZ_CONFIG_ITEMS_V
12.2.2
-
APPS.CSI_ITEM_INSTANCE_PUB dependencies on CZ_CONFIG_ITEMS_V
12.2.2
-
APPS.CSI_T_TXN_RLTNSHPS_PVT dependencies on CZ_CONFIG_ITEMS_V
12.1.1
-
APPS.OKC_XPRT_UTIL_PVT dependencies on CZ_CONFIG_ITEMS_V
12.1.1
-
APPS.CSI_T_VLDN_ROUTINES_PVT dependencies on CZ_CONFIG_ITEMS_V
12.1.1
-
APPS.CSI_T_TXN_LINE_DTLS_PVT dependencies on CZ_CONFIG_ITEMS_V
12.1.1
-
APPS.CSI_INTERFACE_PKG dependencies on CZ_CONFIG_ITEMS_V
12.2.2
-
APPS.CZ_IB_TRANSACTIONS dependencies on CZ_CONFIG_ITEMS_V
12.1.1
-
APPS.CSI_T_TXN_RLTNSHPS_PVT dependencies on CZ_CONFIG_ITEMS_V
12.2.2