Search Results node_disabled_flag
Overview
In Oracle EBS 12.1.1 and 12.2.2, CZ_PSNODES_FOR_UIELEMS_CV is an APPS-owned, VALID view within the CZ (Configurator) product. It presents configuration model Structure Nodes — the UI elements rendered during a runtime configuration session — joined with metadata that drives user-interface behavior. The view is catalogued under the CZ - Configurator implementation/DBA data set and is intended to feed the Configurator user interface layer, where each row represents a page element (PS node) with its display attributes, effective-dating information, and a computed status flag.
The view is of particular interest to developers searching for node_disabled_flag, a computed column that signals whether a structure node's page element should be rendered as disabled in the UI. This makes the view a primary reference point for diagnostics involving greyed-out or read-only Configurator options.
Underlying Base Objects
The documented 12.2.2 metadata lists the following referenced objects:
- CZ_EXPLNODES_WITHIMAGES_V (VIEW) — the principal driving view, aliased CZEXPLIMGV in the view text, supplying the PS node columns, image paths, effective-dating values, and model references.
- CZ_SIGNATURES (SYNONYM) — aliased PGESIG; supplies SIGNATURE_ID, exposed as P_PAGE_ELEMENT_TYPE.
- CZ_TYPE_RELATIONSHIPS (SYNONYM) — aliased CZTYPREL; drives the conversion ('CNV') relationship test used to compute NODE_DISABLED_FLAG.
- CZ_PDT_2_PGE_RELS_V (VIEW) — aliased CZPDT2PGE; relates detailed types to page element types.
- CZ_TYPES (PACKAGE) — its GET_UI_SIGNATURE_ID function is invoked in the correlated subquery and the final projection.
- CZ_DEVELOPER_UTILS_PVT and CZ_UTILS (PACKAGEs), plus DUAL (SYNONYM) — supporting program units referenced in the view's expression tree.
The view therefore sits above the explored-node image view and depends on Configurator's type/signature engine to resolve which UI signature applies to a given PS node.
Key Columns
- PS_NODE_ID — primary identifier of the structure node.
- NAME, INTL_TEXT_ID, TEXT_STR — label and internationalized text for the node.
- PARENT_ID, PARENT_EXPL_NODE_ID, PARENT_PSNODE_EXPL_ID, EFFECTIVE_PARENT_ID, NODE_DEPTH, TREE_SEQ — hierarchy and ordering within the model tree.
- FEATURE_TYPE, PS_NODE_TYPE, MINIMUM, MAXIMUM, MINIMUM_SELECTED, MAXIMUM_SELECTED, COUNTED_OPTIONS_FLAG, INSTANTIABLE_FLAG — behavioral characteristics of the option.
- EFFECTIVE_FROM, EFFECTIVE_UNTIL, EFFECTIVE_USAGE_MASK, UI_OMIT — effective-dating and display-suppression controls.
- FULL_IMAGE_PATH, ALT_TEXT, XPL_VIRTUAL_FLAG — presentation attributes.
- NODE_DISABLED_FLAG — computed expression; returns 1 unless an active ('CNV', not deleted) type relationship exists linking the node's resolved UI signature to a page element type. Effectively, a value of 1 indicates the node has no enabled conversion relationship and should be disabled in the UI.
- P_PAGE_ELEMENT_TYPE — PGESIG.SIGNATURE_ID, the page element signature assigned to the node.
Common Use Cases and Queries
Typical usage includes verifying why a Configurator option renders disabled, auditing effective-dated nodes, and confirming signature assignments before a UI extension or personalization.
- Identify disabled nodes for a model:
SELECT ps_node_id, name, feature_type, node_disabled_flag FROM cz_psnodes_for_uielems_cv WHERE model_id = :p_model_id AND node_disabled_flag = 1;
- Retrieve the page element signature and label set for an active node:
SELECT ps_node_id, name, p_page_element_type, full_image_path FROM cz_psnodes_for_uielems_cv WHERE ps_node_id = :p_ps_node_id;
- Audit effective-dating and UI suppression together:
SELECT ps_node_id, effective_from, effective_until, ui_omit, node_disabled_flag FROM cz_psnodes_for_uielems_cv WHERE TRUNC(SYSDATE) BETWEEN effective_from AND NVL(effective_until, SYSDATE + 1);
Because NODE_DISABLED_FLAG is derived from CZ_TYPE_RELATIONSHIPS and CZ_TYPES.GET_UI_SIGNATURE_ID, queries against it reflect current setup data and should not be cached across configuration changes.
-
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 ,
-
VIEW: APPS.CZ_NODES_FOR_UIELEMS_EFF_CV
12.2.2
-
VIEW: APPS.CZ_EXPLNODES_VALUES_EFF_CV
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CZ.CZ_EXPLNODES_VALUES_EFF_CV, object_name:CZ_EXPLNODES_VALUES_EFF_CV, status:VALID,
-
View: CZ_NODES_FOR_UIELEMS_EFF_CV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CZ.CZ_NODES_FOR_UIELEMS_EFF_CV, object_name:CZ_NODES_FOR_UIELEMS_EFF_CV, status:VALID, product: CZ - Configurator , implementation_dba_data: APPS.CZ_NODES_FOR_UIELEMS_EFF_CV ,
-
View: CZ_NODES_FOR_UIELEMS_EFF_CV
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CZ.CZ_NODES_FOR_UIELEMS_EFF_CV, object_name:CZ_NODES_FOR_UIELEMS_EFF_CV, status:VALID, product: CZ - Configurator , implementation_dba_data: APPS.CZ_NODES_FOR_UIELEMS_EFF_CV ,
-
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 ,
-
VIEW: APPS.CZ_NODES_FOR_UIELEMS_EFF_CV
12.1.1
-
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: APPS.CZ_PSNODES_FOR_UIELEMS_CV
12.1.1
-
VIEW: APPS.CZ_EXPLNODES_VALUES_EFF_CV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CZ.CZ_EXPLNODES_VALUES_EFF_CV, object_name:CZ_EXPLNODES_VALUES_EFF_CV, status:VALID,
-
VIEW: APPS.CZ_PSNODES_FOR_UIELEMS_CV
12.2.2
-
VIEW: APPS.CZ_NODES_FOR_UIELEMS_EFF_CV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CZ.CZ_NODES_FOR_UIELEMS_EFF_CV, object_name:CZ_NODES_FOR_UIELEMS_EFF_CV, status:VALID,
-
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 ,
-
View: CZ_EXPLNODES_VALUES_EFF_CV
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CZ.CZ_EXPLNODES_VALUES_EFF_CV, object_name:CZ_EXPLNODES_VALUES_EFF_CV, status:VALID, product: CZ - Configurator , implementation_dba_data: APPS.CZ_EXPLNODES_VALUES_EFF_CV ,
-
VIEW: APPS.CZ_NODES_FOR_UIELEMS_EFF_CV
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CZ.CZ_NODES_FOR_UIELEMS_EFF_CV, object_name:CZ_NODES_FOR_UIELEMS_EFF_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,
-
View: CZ_EXPLNODES_VALUES_EFF_CV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CZ.CZ_EXPLNODES_VALUES_EFF_CV, object_name:CZ_EXPLNODES_VALUES_EFF_CV, status:VALID, product: CZ - Configurator , implementation_dba_data: APPS.CZ_EXPLNODES_VALUES_EFF_CV ,
-
VIEW: APPS.CZ_EXPLNODES_VALUES_EFF_CV
12.1.1
-
VIEW: APPS.CZ_EXPLNODES_AVAILVALUES_CV
12.1.1
-
VIEW: APPS.CZ_EXPLNODES_AVAILVALUES_CV
12.2.2
-
VIEW: APPS.CZ_EXPLNODES_VALUES_EFF_CV
12.2.2
-
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 ,