Search Results returned_flag
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.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 ,
-
View: CZ_CONFIG_CONTENTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CZ.CZ_CONFIG_CONTENTS_V, object_name:CZ_CONFIG_CONTENTS_V, status:VALID, product: CZ - Configurator , description: Unified Configuration-item View , implementation_dba_data: APPS.CZ_CONFIG_CONTENTS_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_CONTENTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CZ.CZ_CONFIG_CONTENTS_V, object_name:CZ_CONFIG_CONTENTS_V, status:VALID, product: CZ - Configurator , description: Unified Configuration-item View , implementation_dba_data: APPS.CZ_CONFIG_CONTENTS_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 ,
-
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 ,