Search Results cz_explnodes_withimages_v
Overview
CZ_EXPLNODES_WITHIMAGES_V is a read-only database view owned by the APPS schema in Oracle EBS Release 12.1.1 and 12.2.2. It belongs to the CZ (Oracle Configurator) product family and operates as a presentation-layer object that joins exploded model node data with associated node type image metadata. Its purpose is to expose configuration model structure nodes together with the images and UI attributes that the Configurator runtime and reporting layers require when rendering or analyzing a configured model tree. The view is documented as VALID in the ETRM repository, confirming that it is a supported, active object in the shipped data model.
The name reflects its design intent: EXPL denotes the exploded (expanded) node hierarchy from the Configurator model structure, and WITHIMAGES indicates that node image information is concatenated into the result set via an inner relationship with the node type image view. In practice, this view is consumed where a flattened, image-enriched view of model nodes is preferable to querying the two source objects independently.
Underlying Base Objects
The documented dependency list for this view includes both views and PL/SQL packages, reflecting the layered architecture of the CZ schema:
- CZ_EXPLMODEL_NODES_V (VIEW) — the primary data source supplying the exploded model node columns aliased as XPND.
- CZ_PSNODETYPE_IMAGES_V (VIEW) — the image and node-type metadata source aliased as NIMG, providing IMAGE_FILE, ALT_TEXT, FULL_IMAGE_PATH, and related attributes.
- CZ_LOCALIZED_TEXTS_VL (VIEW) — supplies the localized node text (TEXT_STR, LANGUAGE) aliased as LTX.
- CZ_PS_NODES (SYNONYM) — the underlying public synonym for the model structure node table.
- CZ_DEVELOPER_UTILS_PVT, CZ_TYPES, CZ_UTILS (PACKAGES) — utility and type-definition packages referenced by the view's defining SQL.
- DUAL (SYNONYM) — the standard single-row source used in scalar subquery expressions.
The view therefore sits atop a small stack of CZ objects rather than directly over raw tables, which means its availability depends on the validity of CZ_EXPLMODEL_NODES_V and CZ_PSNODETYPE_IMAGES_V.
Key Columns
The projected column list is extensive and can be grouped functionally:
- Hierarchy and identity: PS_NODE_ID, PARENT_ID, PARENT_PSNODE_EXPL_ID, STRUCTURAL_PARENT_ID, EFFECTIVE_PARENT_ID, PERSISTENT_NODE_ID, NODE_DEPTH, MODEL_ID, MODEL_REF_EXPL_ID, CHILD_MODEL_EXPL_ID, REFERRING_NODE_ID.
- Model structure attributes: NAME, FEATURE_TYPE, MINIMUM, MAXIMUM, MINIMUM_SELECTED, MAXIMUM_SELECTED, INITIAL_VALUE, INITIAL_NUM_VALUE, MULTI_CONFIG_FLAG, ORDER_SEQ_FLAG, TREE_SEQ, COUNTER_OPTIONS_FLAG (COUNTED_OPTIONS_FLAG).
- BOM and manufacturing integration: BOM_TREATMENT, BOM_REQUIRED_FLAG, COMPONENT_SEQUENCE_ID, COMPONENT_SEQUENCE_PATH, BOM_SORT_ORDER, SO_ITEM_TYPE_CODE, ITEM_ID, ORGANIZATION_ID, PRIMARY_UOM_CODE.
- Effectivity and rules: EFFECTIVE_USAGE_MASK, EFFECTIVE_FROM, EFFECTIVE_UNTIL, EFFECTIVITY_SET_ID, VIOLATION_TEXT_ID, INSTANTIABLE_FLAG, ACCUMULATOR_FLAG.
- UI and image presentation: UI_OMIT, UI_SECTION, UI_DEF_ID, IMAGE_USAGE_CODE, IMAGE_FILE, ALT_TEXT, FULL_IMAGE_PATH, PSNODETYPE_NAME, PSNODETYPE_ID.
- Audit and localization: TEXT_STR, LANGUAGE, PSN_CREATION_DATE, PSN_CREATED_BY, PSN_LAST_UPDATE_DATE, PSN_LAST_UPDATED_BY, CHECKOUT_USER.
- Extensibility: USER_NUM01–USER_NUM04 and USER_STR01–USER_STR04 reserved for customer extension.
Common Use Cases and Queries
Typical uses include validating which nodes carry images, auditing UI sections for a given model, and feeding reporting extracts with both node and image data in a single pass.
List nodes with image assignments for a model:
SELECT ps_node_id, name, psnodetype_name, image_file, full_image_path FROM apps.cz_explnodes_withimages_v WHERE model_id = :model_id AND image_file IS NOT NULL ORDER BY node_depth, tree_seq;
Inspect UI sections and suppression flags:
SELECT ps_node_id, name, ui_section, ui_omit, suppress_flag FROM apps.cz_explnodes_withimages_v WHERE model_id = :model_id AND NVL(ui_omit,'N') = 'N';
Join to localized text for multilingual reporting, filter by organization, and constrain effectivity using EFFECTIVE_FROM and EFFECTIVE_UNTIL. Because the view is APPS-owned, callers should query it as APPS.CZ_EXPLNODES_WITHIMAGES_V or rely on the standard APPS synonym resolution, and grant SELECT privileges explicitly where cross-schema access is required.
-
View: CZ_EXPLNODES_WITHIMAGES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CZ.CZ_EXPLNODES_WITHIMAGES_V, object_name:CZ_EXPLNODES_WITHIMAGES_V, status:VALID, product: CZ - Configurator , implementation_dba_data: APPS.CZ_EXPLNODES_WITHIMAGES_V ,
-
View: CZ_EXPLNODES_WITHIMAGES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CZ.CZ_EXPLNODES_WITHIMAGES_V, object_name:CZ_EXPLNODES_WITHIMAGES_V, status:VALID, product: CZ - Configurator , implementation_dba_data: APPS.CZ_EXPLNODES_WITHIMAGES_V ,
-
VIEW: APPS.CZ_NODE_ALL_PROPERTIES_V
12.1.1
-
VIEW: APPS.CZ_NODE_ALL_PROPERTIES_V
12.2.2
-
View: CZ_NODE_ALL_PROPERTIES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CZ.CZ_NODE_ALL_PROPERTIES_V, object_name:CZ_NODE_ALL_PROPERTIES_V, status:VALID, product: CZ - Configurator , implementation_dba_data: APPS.CZ_NODE_ALL_PROPERTIES_V ,
-
View: CZ_NODE_ALL_PROPERTIES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CZ.CZ_NODE_ALL_PROPERTIES_V, object_name:CZ_NODE_ALL_PROPERTIES_V, status:VALID, product: CZ - Configurator , implementation_dba_data: APPS.CZ_NODE_ALL_PROPERTIES_V ,
-
VIEW: APPS.CZ_PSNODES_FOR_UIELEMS_CV
12.1.1
-
VIEW: APPS.CZ_PSNODES_FOR_UIELEMS_CV
12.2.2
-
PACKAGE: APPS.CZ_TYPES
12.1.1
owner:APPS, object_type:PACKAGE, object_name:CZ_TYPES, status:VALID,
-
PACKAGE: APPS.CZ_DEVELOPER_UTILS_PVT
12.1.1
owner:APPS, object_type:PACKAGE, object_name:CZ_DEVELOPER_UTILS_PVT, status:VALID,
-
PACKAGE: APPS.CZ_TYPES
12.2.2
owner:APPS, object_type:PACKAGE, object_name:CZ_TYPES, status:VALID,
-
PACKAGE: APPS.CZ_DEVELOPER_UTILS_PVT
12.2.2
owner:APPS, object_type:PACKAGE, object_name:CZ_DEVELOPER_UTILS_PVT, status:VALID,
-
VIEW: APPS.CZ_PSNODETYPE_IMAGES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CZ.CZ_PSNODETYPE_IMAGES_V, object_name:CZ_PSNODETYPE_IMAGES_V, status:VALID,
-
VIEW: APPS.CZ_NODE_ALL_PROPERTIES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CZ.CZ_NODE_ALL_PROPERTIES_V, object_name:CZ_NODE_ALL_PROPERTIES_V, status:VALID,
-
VIEW: APPS.CZ_PSNODETYPE_IMAGES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CZ.CZ_PSNODETYPE_IMAGES_V, object_name:CZ_PSNODETYPE_IMAGES_V, status:VALID,
-
VIEW: APPS.CZ_EXPLNODES_AVAILVALUES_CV
12.1.1
-
VIEW: APPS.CZ_EXPLNODES_AVAILVALUES_CV
12.2.2
-
VIEW: APPS.CZ_NODE_ALL_PROPERTIES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CZ.CZ_NODE_ALL_PROPERTIES_V, object_name:CZ_NODE_ALL_PROPERTIES_V, status:VALID,
-
View: CZ_PSNODES_FOR_UIELEMS_CV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CZ.CZ_PSNODES_FOR_UIELEMS_CV, object_name:CZ_PSNODES_FOR_UIELEMS_CV, status:VALID, product: CZ - Configurator , implementation_dba_data: APPS.CZ_PSNODES_FOR_UIELEMS_CV ,
-
SYNONYM: APPS.CZ_PS_NODES
12.2.2
owner:APPS, object_type:SYNONYM, object_name:CZ_PS_NODES, status:VALID,
-
View: CZ_PSNODES_FOR_UIELEMS_CV
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CZ.CZ_PSNODES_FOR_UIELEMS_CV, object_name:CZ_PSNODES_FOR_UIELEMS_CV, status:VALID, product: CZ - Configurator , implementation_dba_data: APPS.CZ_PSNODES_FOR_UIELEMS_CV ,
-
SYNONYM: APPS.CZ_PS_NODES
12.1.1
owner:APPS, object_type:SYNONYM, object_name:CZ_PS_NODES, status:VALID,
-
12.1.1 FND Design Data
12.1.1
-
View: CZ_EXPLNODES_AVAILVALUES_CV
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CZ.CZ_EXPLNODES_AVAILVALUES_CV, object_name:CZ_EXPLNODES_AVAILVALUES_CV, status:VALID, product: CZ - Configurator , implementation_dba_data: APPS.CZ_EXPLNODES_AVAILVALUES_CV ,
-
12.2.2 DBA Data
12.2.2
-
12.2.2 FND Design Data
12.2.2
-
VIEW: APPS.CZ_PSNODES_FOR_UIELEMS_CV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CZ.CZ_PSNODES_FOR_UIELEMS_CV, object_name:CZ_PSNODES_FOR_UIELEMS_CV, status:VALID,
-
View: CZ_EXPLNODES_AVAILVALUES_CV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CZ.CZ_EXPLNODES_AVAILVALUES_CV, object_name:CZ_EXPLNODES_AVAILVALUES_CV, status:VALID, product: CZ - Configurator , implementation_dba_data: APPS.CZ_EXPLNODES_AVAILVALUES_CV ,
-
VIEW: APPS.CZ_PSNODES_FOR_UIELEMS_CV
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CZ.CZ_PSNODES_FOR_UIELEMS_CV, object_name:CZ_PSNODES_FOR_UIELEMS_CV, status:VALID,
-
12.1.1 DBA Data
12.1.1
-
VIEW: APPS.CZ_LOCALIZED_TEXTS_VL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CZ.CZ_LOCALIZED_TEXTS_VL, object_name:CZ_LOCALIZED_TEXTS_VL, status:VALID,
-
VIEW: APPS.CZ_LOCALIZED_TEXTS_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CZ.CZ_LOCALIZED_TEXTS_VL, object_name:CZ_LOCALIZED_TEXTS_VL, status:VALID,
-
PACKAGE: APPS.CZ_UTILS
12.2.2
owner:APPS, object_type:PACKAGE, object_name:CZ_UTILS, status:VALID,
-
PACKAGE: APPS.CZ_UTILS
12.1.1
owner:APPS, object_type:PACKAGE, object_name:CZ_UTILS, status:VALID,
-
VIEW: APPS.CZ_EXPLNODES_WITHIMAGES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CZ.CZ_EXPLNODES_WITHIMAGES_V, object_name:CZ_EXPLNODES_WITHIMAGES_V, status:VALID,
-
VIEW: APPS.CZ_EXPLNODES_WITHIMAGES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CZ.CZ_EXPLNODES_WITHIMAGES_V, object_name:CZ_EXPLNODES_WITHIMAGES_V, status:VALID,
-
VIEW: APPS.CZ_EXPLMODEL_NODES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CZ.CZ_EXPLMODEL_NODES_V, object_name:CZ_EXPLMODEL_NODES_V, status:VALID,
-
VIEW: APPS.CZ_EXPLMODEL_NODES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CZ.CZ_EXPLMODEL_NODES_V, object_name:CZ_EXPLMODEL_NODES_V, status:VALID,
-
VIEW: APPS.CZ_EXPLNODES_AVAILVALUES_CV
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CZ.CZ_EXPLNODES_AVAILVALUES_CV, object_name:CZ_EXPLNODES_AVAILVALUES_CV, status:VALID,
-
VIEW: APPS.CZ_EXPLNODES_AVAILVALUES_CV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CZ.CZ_EXPLNODES_AVAILVALUES_CV, object_name:CZ_EXPLNODES_AVAILVALUES_CV, status:VALID,
-
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 ,
-
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 ,
-
12.2.2 DBA Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
SYNONYM: PUBLIC.DUAL
12.2.2
owner:PUBLIC, object_type:SYNONYM, object_name:DUAL, status:VALID,
-
SYNONYM: PUBLIC.DUAL
12.1.1
owner:PUBLIC, object_type:SYNONYM, object_name:DUAL, status:VALID,