Search Results cz_itemmaster_hgrid_v
Overview
CZ_ITEMMASTER_HGRID_V is an APPS-owned database view in the Oracle E-Business Suite Configurator (CZ) module. It presents a hierarchical, grid-oriented result set of configurator item master data, combining item type records with presentation attributes such as alternate text and image paths. The view is designed to feed user interface grid components and reporting layers that display configurator item hierarchies, rather than to store transactional data itself. Because Configurator relies heavily on item types and their related UI definitions, this view acts as a read-only projection that joins model and presentation metadata into a single flattened structure suitable for HGrid-style rendering.
The view carries STATUS VALID in both EBS 12.1.1 and 12.2.2, indicating it remains a supported, compiled object across these releases. It is not a table; consumers cannot perform DML against it and must treat the output as derived data.
Underlying Base Objects
The documented ETRM metadata lists four referenced base objects: CZ_ITEM_MASTERS (SYNONYM), CZ_ITEM_TYPES (SYNONYM), CZ_RPOBJECTTYPES_LKV (VIEW), and CZ_UI_PATHED_IMAGES_V (VIEW). The view text reveals a two-branch UNION ALL structure. The first branch synthesizes a root node with OBJECT_ID 0, OBJECT_TYPE 'NUL', and NAME 'ITEM MASTER', joining CZ_RPOBJECTTYPES_LKV and CZ_UI_PATHED_IMAGES_V on the 'ITY' object type code with IMAGE_USAGE_CODE 30 and UI_DEF_ID 0. The second branch selects actual item type rows from CZ_ITEM_TYPES, joined to the same lookup and image views, restricted by DELETED_FLAG = '0'. This design produces a synthetic parent row plus its child item type rows, forming the hierarchical grid.
Key Columns
- OBJECT_ID / OBJECT_TYPE — Numeric identifier and type code for the node; the root uses 0 and 'NUL', while item types use ITEM_TYPE_ID and 'ITY'.
- PARENT_OBJECT_ID / PARENT_OBJECT_TYPE — Establish the hierarchy linkage between child item types and the root node.
- NAME / DESC_TEXT — Display name and descriptive text for each node.
- ALT_TEXT — Alternate text sourced from CZ_RPOBJECTTYPES_LKV.VALUE_DESCRIPTION, used for accessibility and tooltip rendering.
- FULL_IMAGE_PATH — Resolved image path from CZ_UI_PATHED_IMAGES_V for grid icons.
- DELETED_FLAG — Soft-delete indicator; the root is hardcoded '0' and item types are filtered on '0'.
- QUOTEABLE_FLAG — Indicates whether the node participates in quoting; null for the root row.
- Audit columns — CREATION_DATE, LAST_UPDATE_DATE, CREATED_BY, LAST_UPDATED_BY, and LAST_UPDATE_LOGIN.
Common Use Cases and Queries
Typical usage includes custom grid extensions, Configurator UI diagnostics, and reporting on item type hierarchies with their associated imagery. A representative query filters the synthetic root and lists active item types:
SELECT OBJECT_ID, OBJECT_TYPE, NAME, ALT_TEXT, FULL_IMAGE_PATH FROM APPS.CZ_ITEMMASTER_HGRID_V WHERE OBJECT_TYPE = 'ITY' ORDER BY NAME;- To isolate the root node:
SELECT * FROM APPS.CZ_ITEMMASTER_HGRID_V WHERE OBJECT_TYPE = 'NUL'; - To audit node count per type:
SELECT OBJECT_TYPE, COUNT(*) FROM APPS.CZ_ITEMMASTER_HGRID_V GROUP BY OBJECT_TYPE;
Because ALT_TEXT and FULL_IMAGE_PATH derive from UI definition joins, results depend on properly configured image usage and lookup data; missing configurations yield null presentation attributes.
-
View: CZ_ITEMMASTER_HGRID_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CZ.CZ_ITEMMASTER_HGRID_V, object_name:CZ_ITEMMASTER_HGRID_V, status:VALID, product: CZ - Configurator , implementation_dba_data: APPS.CZ_ITEMMASTER_HGRID_V ,
-
View: CZ_ITEMMASTER_HGRID_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CZ.CZ_ITEMMASTER_HGRID_V, object_name:CZ_ITEMMASTER_HGRID_V, status:VALID, product: CZ - Configurator , implementation_dba_data: APPS.CZ_ITEMMASTER_HGRID_V ,
-
SYNONYM: APPS.CZ_ITEM_TYPES
12.2.2
owner:APPS, object_type:SYNONYM, object_name:CZ_ITEM_TYPES, status:VALID,
-
SYNONYM: APPS.CZ_ITEM_TYPES
12.1.1
owner:APPS, object_type:SYNONYM, object_name:CZ_ITEM_TYPES, status:VALID,
-
VIEW: APPS.CZ_RPOBJECTTYPES_LKV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CZ.CZ_RPOBJECTTYPES_LKV, object_name:CZ_RPOBJECTTYPES_LKV, status:VALID,
-
SYNONYM: APPS.CZ_ITEM_MASTERS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:CZ_ITEM_MASTERS, status:VALID,
-
SYNONYM: APPS.CZ_ITEM_MASTERS
12.2.2
owner:APPS, object_type:SYNONYM, object_name:CZ_ITEM_MASTERS, status:VALID,
-
VIEW: APPS.CZ_RPOBJECTTYPES_LKV
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CZ.CZ_RPOBJECTTYPES_LKV, object_name:CZ_RPOBJECTTYPES_LKV, status:VALID,
-
VIEW: APPS.CZ_ITEMMASTER_HGRID_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CZ.CZ_ITEMMASTER_HGRID_V, object_name:CZ_ITEMMASTER_HGRID_V, status:VALID,
-
VIEW: APPS.CZ_ITEMMASTER_HGRID_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CZ.CZ_ITEMMASTER_HGRID_V, object_name:CZ_ITEMMASTER_HGRID_V, status:VALID,
-
VIEW: APPS.CZ_UI_PATHED_IMAGES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CZ.CZ_UI_PATHED_IMAGES_V, object_name:CZ_UI_PATHED_IMAGES_V, status:VALID,
-
VIEW: APPS.CZ_UI_PATHED_IMAGES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CZ.CZ_UI_PATHED_IMAGES_V, object_name:CZ_UI_PATHED_IMAGES_V, status:VALID,
-
12.2.2 FND Design Data
12.2.2
-
12.1.1 FND Design Data
12.1.1
-
12.1.1 DBA Data
12.1.1
-
12.2.2 DBA Data
12.2.2
-
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 ,
-
12.2.2 DBA Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
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 ,