Search Results root_ui_list_seq
Overview
The view APPS.CZ_EXPLODED_UI_V is a dictionary-managed reporting object within the Oracle E-Business Suite (EBS) configuration and setup framework, exposed under the APPS schema in both 12.1.1 and 12.2.2 environments. It presents a fully exploded, hierarchical representation of user interface (UI) definition nodes and the model references nested beneath them. Unlike a conventional relational join across fixed tables, this view is constructed using a correlated table function invocation that dynamically materializes the reference tree for every root UI definition. As a result, the view exposes the complete expansion of each UI model — root nodes, child nodes, depth indicators, and leaf-level navigation targets — in a single flattened relational result set suitable for SQL-based reporting, diagnostics, and integration extracts. The view is intended for read-only consumption and is not a transactional entity.
Underlying Base Objects
The view is defined over three documented base objects:
- CZ_UI_DEFS (referenced via synonym) — The driving table, aliased RUDF, supplying the root UI definition attributes. Each row contributes a distinct root UI definition.
- CZ_MODEL_UTIL_PVT (package) — Supplies the pipelined/tabular function GET_UI_REFS_UNDER_MODEL, which walks the model references beneath a given UI definition and returns the exploded node set.
- CZ_UIREFS_INMODEL_TBL_TYPE (type) — The collection type to which the function result is cast, providing the exploded columns such as ROOT_MODEL_EXPL_ID, EXPL_NODE_DEPTH, and LEAF_EXPL_NODE_ID.
The join is executed through a TABLE ( CAST ( ... ) ) construct, meaning the view performs a nested expansion per qualifying root row. The driving query filters on DELETED_FLAG = '0' and MASTER_TEMPLATE_FLAG = '0', so soft-deleted definitions and master templates are excluded from the result set.
Key Columns
- ROOT_UI_DEF_ID / ROOT_UI_NAME / ROOT_UI_DESCRIPTION — Identity and descriptive text of the root UI definition.
- ROOT_MODEL_ID — The development project identifier associated with the root model.
- ROOT_UI_LIST_SEQ — Sourced from
RUDF.TREE_SEQ; the ordering sequence used to arrange the root UI within its list or tree. This is the column most directly associated with the user search term root_ui_list_seq. - UI_STYLE, GEN_VERSION, LOOK_AND_FEEL, TREENODE_DISPLAY_SOURCE, GEN_HEADER — Presentation and generation attributes controlling how the UI is rendered.
- PERSISTENT_UI_DEF_ID, SEEDED_FLAG, UI_STATUS — Persistence linkage, seed provenance, and lifecycle status.
- ROOT_MODEL_EXPL_ID, REFERRING_NODE_ID, EXPL_NODE_DEPTH, MODEL_REFERENCE_DEPTH — Explosion identifiers and depth metrics describing position within the reference tree.
- CHILD_UI_DEF_ID, CHILD_MODEL_ID — The child node and its model, defining the downward relationship.
- REF_EXPL_NODE_ID, LEAF_EXPL_NODE_ID, ROOT_MDL_PARNT_EXPL_ID, LEAF_PERSISTENT_NODE_ID — Parent/leaf navigation pointers enabling tree reconstruction.
- VIRTUAL_FLAG, PARENT_UI_DEF_ID — Indicates virtual nodes and the immediate parent definition.
Common Use Cases and Queries
Typical uses include auditing UI hierarchy depth, tracing which child models hang beneath a given root definition, and reconciling TREE_SEQ ordering values across configurations.
List root UI definitions by sequence:
SELECT DISTINCT root_ui_def_id, root_ui_name, root_ui_list_seq FROM apps.cz_exploded_ui_v ORDER BY root_ui_list_seq;
Inspect exploded children and depth for one root:
SELECT root_ui_name, child_ui_def_id, child_model_id, expl_node_depth, virtual_flag FROM apps.cz_exploded_ui_v WHERE root_ui_def_id = :p_id ORDER BY expl_node_depth, root_ui_list_seq;
Trace leaf navigation targets:
SELECT root_ui_name, leaf_expl_node_id, leaf_persistent_node_id, model_reference_depth FROM apps.cz_exploded_ui_v WHERE leaf_expl_node_id IS NOT NULL;
Because the view invokes a PL/SQL table function per root row, queries should be constrained where possible to limit expansion cost. The root_ui_list_seq column is commonly used as the primary sort key when presenting UI definitions in their intended order.
-
VIEW: APPS.CZ_EXPLODED_UI_V
12.2.2
-
View: CZ_EXPLODED_UI_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CZ.CZ_EXPLODED_UI_V, object_name:CZ_EXPLODED_UI_V, status:VALID, product: CZ - Configurator , implementation_dba_data: APPS.CZ_EXPLODED_UI_V ,
-
VIEW: APPS.CZ_EXPLODED_UI_V
12.1.1
-
View: CZ_UIEXPL_HGRID
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CZ.CZ_UIEXPL_HGRID, object_name:CZ_UIEXPL_HGRID, status:VALID, product: CZ - Configurator , implementation_dba_data: APPS.CZ_UIEXPL_HGRID ,
-
VIEW: APPS.CZ_UIEXPL_HGRID
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CZ.CZ_UIEXPL_HGRID, object_name:CZ_UIEXPL_HGRID, status:VALID,
-
View: CZ_EXPLODED_UI_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CZ.CZ_EXPLODED_UI_V, object_name:CZ_EXPLODED_UI_V, status:VALID, product: CZ - Configurator , implementation_dba_data: APPS.CZ_EXPLODED_UI_V ,
-
VIEW: APPS.CZ_UIEXPL_HGRID
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CZ.CZ_UIEXPL_HGRID, object_name:CZ_UIEXPL_HGRID, status:VALID,
-
VIEW: APPS.CZ_UIEXPL_HGRID
12.1.1
-
VIEW: APPS.CZ_EXPLODED_UI_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CZ.CZ_EXPLODED_UI_V, object_name:CZ_EXPLODED_UI_V, status:VALID,
-
VIEW: APPS.CZ_EXPLODED_UI_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CZ.CZ_EXPLODED_UI_V, object_name:CZ_EXPLODED_UI_V, status:VALID,
-
View: CZ_UIEXPL_HGRID
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CZ.CZ_UIEXPL_HGRID, object_name:CZ_UIEXPL_HGRID, status:VALID, product: CZ - Configurator , implementation_dba_data: APPS.CZ_UIEXPL_HGRID ,
-
VIEW: APPS.CZ_UICOMPONENT_HGRID_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CZ.CZ_UICOMPONENT_HGRID_V, object_name:CZ_UICOMPONENT_HGRID_V, status:VALID,
-
View: CZ_UICOMPONENT_HGRID_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CZ.CZ_UICOMPONENT_HGRID_V, object_name:CZ_UICOMPONENT_HGRID_V, status:VALID, product: CZ - Configurator , implementation_dba_data: APPS.CZ_UICOMPONENT_HGRID_V ,
-
VIEW: APPS.CZ_UICOMPONENT_HGRID_V
12.1.1
-
View: CZ_UICOMPONENT_HGRID_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CZ.CZ_UICOMPONENT_HGRID_V, object_name:CZ_UICOMPONENT_HGRID_V, status:VALID, product: CZ - Configurator , implementation_dba_data: APPS.CZ_UICOMPONENT_HGRID_V ,
-
VIEW: APPS.CZ_UICOMPONENT_HGRID_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CZ.CZ_UICOMPONENT_HGRID_V, object_name:CZ_UICOMPONENT_HGRID_V, status:VALID,
-
VIEW: APPS.CZ_UIEXPL_HGRID
12.2.2
-
VIEW: APPS.CZ_UICOMPONENT_HGRID_V
12.2.2
-
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 ,