Search Results root_ui_description
Overview
APPS.CZ_EXPLODED_UI_V is an Oracle E-Business Suite configuration and integration view belonging to the ETRM (Enterprise Transaction and Repository Model) component of the Oracle Applications technology stack. It exposes a flattened, hierarchical representation of the user interface definitions stored within the CZ_UI_DEFS repository, presenting each UI definition together with the set of UI references and model dependencies nested beneath it. The view derives its name from the fact that it "explodes" a root UI definition into its constituent reference tree, returning one row for every node discovered by traversing the references under the root model. Because the view surfaces the DESC_TEXT column under the alias ROOT_UI_DESCRIPTION, it is frequently located by users searching for "root_ui_description" while identifying the descriptive text associated with a root UI definition.
The view is used primarily for reporting, diagnostics, and integration work involving the EBS user interface metadata model. Rather than forcing consumers to invoke the underlying PL/SQL utility package directly, the view presents the exploded result set in relational form, suitable for SQL joins, ad-hoc queries, and downstream extracts.
Underlying Base Objects
The view is defined over three documented objects, all owned by APPS:
- CZ_UI_DEFS (referenced through a synonym) — the master repository of UI definitions. The view selects root-level definitions from this source, applying filters for
DELETED_FLAG = '0'andMASTER_TEMPLATE_FLAG = '0', which restrict the result to active, non-template UI definitions. - CZ_MODEL_UTIL_PVT (PL/SQL package) — the utility package supplying the
GET_UI_REFS_UNDER_MODELpipelined function. This function accepts a UI definition identifier and performs the recursive traversal that yields the reference rows. - CZ_UIREFS_INMODEL_TBL_TYPE (collection type) — the nested table type whose rows are cast and expanded in the FROM clause via the
TABLE(CAST(...))construct, producing the exploded rows.
Because the view invokes a pipelined PL/SQL function, its performance characteristics depend on the efficiency of GET_UI_REFS_UNDER_MODEL and the depth of the underlying reference hierarchy.
Key Columns
The columns exposed by the view fall into two logical groups. The first group originates from the root UI definition row in CZ_UI_DEFS:
- ROOT_UI_DEF_ID, ROOT_UI_NAME, ROOT_UI_DESCRIPTION — the identifier, name, and descriptive text of the root UI definition. ROOT_UI_DESCRIPTION corresponds to
RUDF.DESC_TEXT. - ROOT_MODEL_ID — the development project identifier associated with the root model.
- ROOT_UI_LIST_SEQ, UI_STYLE, GEN_VERSION, TREENODE_DISPLAY_SOURCE, GEN_HEADER, LOOK_AND_FEEL — presentation and generation attributes of the root definition.
- PERSISTENT_UI_DEF_ID, MASTER_TEMPLATE_FLAG, SEEDED_FLAG, UI_STATUS — persistence, template, seeding, and lifecycle status indicators.
The second group originates from the exploded reference rows returned by the pipelined function:
- ROOT_MODEL_EXPL_ID, REFERRING_NODE_ID, EXPL_NODE_DEPTH — the exploded node identifier, the referring node, and the node's depth in the tree.
- MODEL_REFERENCE_DEPTH, VIRTUAL_FLAG — the model reference depth and whether the node is virtual.
- CHILD_UI_DEF_ID, CHILD_MODEL_ID — the child UI definition and child model at that node.
- REF_EXPL_NODE_ID, LEAF_EXPL_NODE_ID, ROOT_MDL_PARNT_EXPL_ID, PARENT_UI_DEF_ID, LEAF_PERSISTENT_NODE_ID — parent/leaf linkage columns describing the hierarchy.
Common Use Cases and Queries
A typical diagnostic query lists the exploded reference tree for a named root UI definition, joining description and depth information:
- Inventory of root UIs with descriptions:
SELECT DISTINCT root_ui_def_id, root_ui_name, root_ui_description FROM cz_exploded_ui_v ORDER BY root_ui_name; - Locate a definition by description:
SELECT root_ui_def_id, root_ui_name FROM cz_exploded_ui_v WHERE root_ui_description LIKE '%Order%'; - Reference depth analysis:
SELECT root_ui_name, child_ui_def_id, expl_node_depth FROM cz_exploded_ui_v WHERE root_ui_def_id = :ui_def_id ORDER BY expl_node_depth; - Find parents of a referenced node:
SELECT root_ui_name, parent_ui_def_id, referring_node_id FROM cz_exploded_ui_v WHERE child_ui_def_id = :child_id;
These patterns support impact analysis before changing or migrating UI definitions, tracing the influence of master templates, and building integration extracts that require the fully expanded reference topology rather than the top-level definition alone.
-
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 ,