Search Results cz_ps_nodes
Overview
The CZ_PS_NODES table is a core data structure within the Oracle E-Business Suite Configurator (CZ) module. It serves as the master repository for all nodes within a configurable model's project structure. Each row represents a distinct element, such as a component, feature, option, or logical item, that can be assembled into a configured product. The table is fundamental to the definition, storage, and runtime evaluation of configuration models, enabling the complex, rules-based product configurations central to Oracle's CPQ (Configure, Price, Quote) and manufacturing solutions. Its integrity is maintained through a primary key and numerous foreign key relationships that link nodes to their properties, textual descriptions, validation rules, and hierarchical parent-child structures.
Key Information Stored
The table's primary identifier is the PS_NODE_ID column. Key relational and descriptive columns include DEVL_PROJECT_ID, which links the node to its parent development project in CZ_DEVL_PROJECTS, and PARENT_ID, which self-references the table to establish the hierarchical project structure. Critical foreign key columns define the node's type and attributes: ITEM_ID links to a master item in CZ_ITEM_MASTERS, ITEM_TYPE_BACKPTR and PROPERTY_BACKPTR define the node's classification and characteristics, and INTL_TEXT_ID holds multilingual descriptive text. Functional columns such as EFFECTIVITY_SET_ID, FROM_POPULATOR_ID, and SUB_CONS_ID manage rule effectivity, data population logic, and subscription sets, respectively. The REFERENCE_ID column allows nodes to be linked across different development projects.
Common Use Cases and Queries
This table is central to technical analysis, data fixes, and reporting on the Configurator model. Common use cases include tracing the hierarchical structure of a configuration model, analyzing node usage across different projects, and diagnosing runtime configuration issues by examining specific node properties. A foundational query retrieves the node hierarchy for a given project:
- SELECT node_name, ps_node_id, parent_id FROM cz_ps_nodes WHERE devl_project_id = <project_id> CONNECT BY PRIOR ps_node_id = parent_id START WITH parent_id IS NULL;
Another typical query joins with CZ_ITEM_MASTERS to list all component nodes with their associated item numbers:
- SELECT im.item_number, pn.* FROM cz_ps_nodes pn, cz_item_masters im WHERE pn.item_id = im.item_id AND pn.devl_project_id = <project_id>;
Data integrity checks often involve verifying orphaned nodes or validating foreign key relationships, such as ensuring all ITEM_ID values have a corresponding master record.
Related Objects
The CZ_PS_NODES table has extensive relationships, as indicated by its foreign keys. It is a parent table to numerous critical Configurator entities. Key child tables include CZ_CONFIG_ITEMS and CZ_CONFIG_INPUTS for runtime configuration data, CZ_EXPRESSION_NODES for rule logic, and CZ_CONFIG_MESSAGES for validation. It is referenced by design objects like CZ_DES_CHART_CELLS and CZ_DES_CHART_FEATURES. The table also has foreign key dependencies on master data tables such as CZ_DEVL_PROJECTS, CZ_ITEM_MASTERS, CZ_INTL_TEXTS, CZ_PROPERTIES, and CZ_ITEM_TYPES. The self-referencing PARENT_ID foreign key is essential for managing the node hierarchy itself.
-
Table: CZ_PS_NODES
12.2.2
owner:CZ, object_type:TABLE, fnd_design_data:CZ.CZ_PS_NODES, object_name:CZ_PS_NODES, status:VALID, product: CZ - Configurator , description: Project structure nodes , implementation_dba_data: CZ.CZ_PS_NODES ,
-
Table: CZ_PS_NODES
12.1.1
owner:CZ, object_type:TABLE, fnd_design_data:CZ.CZ_PS_NODES, object_name:CZ_PS_NODES, status:VALID, product: CZ - Configurator , description: Project structure nodes , implementation_dba_data: CZ.CZ_PS_NODES ,
-
View: CZ_COMMON_CHILDND_PROPS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CZ.CZ_COMMON_CHILDND_PROPS_V, object_name:CZ_COMMON_CHILDND_PROPS_V, status:VALID, product: CZ - Configurator , implementation_dba_data: APPS.CZ_COMMON_CHILDND_PROPS_V ,
-
Table: CZ_DES_CHART_CELLS
12.1.1
owner:CZ, object_type:TABLE, fnd_design_data:CZ.CZ_DES_CHART_CELLS, object_name:CZ_DES_CHART_CELLS, status:VALID, product: CZ - Configurator , description: Contents of design chart cells , implementation_dba_data: CZ.CZ_DES_CHART_CELLS ,
-
View: CZ_COMMON_CHILDND_PROPS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CZ.CZ_COMMON_CHILDND_PROPS_V, object_name:CZ_COMMON_CHILDND_PROPS_V, status:VALID, product: CZ - Configurator , implementation_dba_data: APPS.CZ_COMMON_CHILDND_PROPS_V ,
-
Table: CZ_DES_CHART_CELLS
12.2.2
owner:CZ, object_type:TABLE, fnd_design_data:CZ.CZ_DES_CHART_CELLS, object_name:CZ_DES_CHART_CELLS, status:VALID, product: CZ - Configurator , description: Contents of design chart cells , implementation_dba_data: CZ.CZ_DES_CHART_CELLS ,
-
View: CZ_NODE_USER_PROPERTIES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CZ.CZ_NODE_USER_PROPERTIES_V, object_name:CZ_NODE_USER_PROPERTIES_V, status:VALID, product: CZ - Configurator , implementation_dba_data: APPS.CZ_NODE_USER_PROPERTIES_V ,
-
Table: CZ_POPULATORS
12.1.1
owner:CZ, object_type:TABLE, fnd_design_data:CZ.CZ_POPULATORS, object_name:CZ_POPULATORS, status:VALID, product: CZ - Configurator , description: Table holds product-structure Populators , implementation_dba_data: CZ.CZ_POPULATORS ,
-
Table: CZ_UI_NODES
12.2.2
owner:CZ, object_type:TABLE, fnd_design_data:CZ.CZ_UI_NODES, object_name:CZ_UI_NODES, status:VALID, product: CZ - Configurator , description: Describes each UI node , implementation_dba_data: CZ.CZ_UI_NODES ,
-
Table: CZ_UI_NODES
12.1.1
owner:CZ, object_type:TABLE, fnd_design_data:CZ.CZ_UI_NODES, object_name:CZ_UI_NODES, status:VALID, product: CZ - Configurator , description: Describes each UI node , implementation_dba_data: CZ.CZ_UI_NODES ,
-
Table: CZ_DES_CHART_COLUMNS
12.1.1
owner:CZ, object_type:TABLE, fnd_design_data:CZ.CZ_DES_CHART_COLUMNS, object_name:CZ_DES_CHART_COLUMNS, status:VALID, product: CZ - Configurator , description: Parameters for Design Chart columns , implementation_dba_data: CZ.CZ_DES_CHART_COLUMNS ,
-
View: CZ_NODE_USER_PROPERTIES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CZ.CZ_NODE_USER_PROPERTIES_V, object_name:CZ_NODE_USER_PROPERTIES_V, status:VALID, product: CZ - Configurator , implementation_dba_data: APPS.CZ_NODE_USER_PROPERTIES_V ,
-
View: CZ_ALL_UI_COMPONENTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CZ.CZ_ALL_UI_COMPONENTS_V, object_name:CZ_ALL_UI_COMPONENTS_V, status:VALID, product: CZ - Configurator , implementation_dba_data: APPS.CZ_ALL_UI_COMPONENTS_V ,
-
Table: CZ_DES_CHART_COLUMNS
12.2.2
owner:CZ, object_type:TABLE, fnd_design_data:CZ.CZ_DES_CHART_COLUMNS, object_name:CZ_DES_CHART_COLUMNS, status:VALID, product: CZ - Configurator , description: Parameters for Design Chart columns , implementation_dba_data: CZ.CZ_DES_CHART_COLUMNS ,
-
View: CZ_PSNODE_PROPVAL_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CZ.CZ_PSNODE_PROPVAL_V, object_name:CZ_PSNODE_PROPVAL_V, status:VALID, product: CZ - Configurator , description: Lists all properties and values associated with psnodes , implementation_dba_data: APPS.CZ_PSNODE_PROPVAL_V ,
-
View: CZ_ALL_UI_COMPONENTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CZ.CZ_ALL_UI_COMPONENTS_V, object_name:CZ_ALL_UI_COMPONENTS_V, status:VALID, product: CZ - Configurator , implementation_dba_data: APPS.CZ_ALL_UI_COMPONENTS_V ,
-
Table: CZ_INTL_TEXTS
12.1.1
owner:CZ, object_type:TABLE, fnd_design_data:CZ.CZ_INTL_TEXTS, object_name:CZ_INTL_TEXTS, status:VALID, product: CZ - Configurator , description: OBSOLETE , implementation_dba_data: CZ.CZ_INTL_TEXTS ,
-
Table: CZ_POPULATORS
12.2.2
owner:CZ, object_type:TABLE, fnd_design_data:CZ.CZ_POPULATORS, object_name:CZ_POPULATORS, status:VALID, product: CZ - Configurator , description: Table holds product-structure Populators , implementation_dba_data: CZ.CZ_POPULATORS ,
-
Table: CZ_MODEL_REF_EXPLS
12.1.1
owner:CZ, object_type:TABLE, fnd_design_data:CZ.CZ_MODEL_REF_EXPLS, object_name:CZ_MODEL_REF_EXPLS, status:VALID, product: CZ - Configurator , description: Model-reference explosions table , implementation_dba_data: CZ.CZ_MODEL_REF_EXPLS ,
-
Table: CZ_INTL_TEXTS
12.2.2
owner:CZ, object_type:TABLE, fnd_design_data:CZ.CZ_INTL_TEXTS, object_name:CZ_INTL_TEXTS, status:VALID, product: CZ - Configurator , description: OBSOLETE , implementation_dba_data: CZ.CZ_INTL_TEXTS ,
-
View: CZ_PSNODE_PROPVAL_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CZ.CZ_PSNODE_PROPVAL_V, object_name:CZ_PSNODE_PROPVAL_V, status:VALID, product: CZ - Configurator , description: Lists all properties and values associated with psnodes , implementation_dba_data: APPS.CZ_PSNODE_PROPVAL_V ,
-
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_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 ,
-
Table: CZ_MODEL_REF_EXPLS
12.2.2
owner:CZ, object_type:TABLE, fnd_design_data:CZ.CZ_MODEL_REF_EXPLS, object_name:CZ_MODEL_REF_EXPLS, status:VALID, product: CZ - Configurator , description: Model-reference explosions table , implementation_dba_data: CZ.CZ_MODEL_REF_EXPLS ,
-
Table: CZ_DEVL_PROJECTS
12.1.1
owner:CZ, object_type:TABLE, fnd_design_data:CZ.CZ_DEVL_PROJECTS, object_name:CZ_DEVL_PROJECTS, status:VALID, product: CZ - Configurator , description: Master record for a configurator model/project , implementation_dba_data: CZ.CZ_DEVL_PROJECTS ,
-
Table: CZ_DEVL_PROJECTS
12.2.2
owner:CZ, object_type:TABLE, fnd_design_data:CZ.CZ_DEVL_PROJECTS, object_name:CZ_DEVL_PROJECTS, status:VALID, product: CZ - Configurator , description: Master record for a configurator model/project , implementation_dba_data: CZ.CZ_DEVL_PROJECTS ,
-
View: CZ_UI_COMPONENTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CZ.CZ_UI_COMPONENTS_V, object_name:CZ_UI_COMPONENTS_V, status:VALID, product: CZ - Configurator , implementation_dba_data: APPS.CZ_UI_COMPONENTS_V ,
-
View: CZ_UI_COMPONENTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CZ.CZ_UI_COMPONENTS_V, object_name:CZ_UI_COMPONENTS_V, status:VALID, product: CZ - Configurator , implementation_dba_data: APPS.CZ_UI_COMPONENTS_V ,
-
View: CZ_RULE_EXPRESSION_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CZ.CZ_RULE_EXPRESSION_V, object_name:CZ_RULE_EXPRESSION_V, status:VALID, product: CZ - Configurator , implementation_dba_data: APPS.CZ_RULE_EXPRESSION_V ,
-
View: CZ_RULE_EXPRESSION_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CZ.CZ_RULE_EXPRESSION_V, object_name:CZ_RULE_EXPRESSION_V, status:VALID, product: CZ - Configurator , implementation_dba_data: APPS.CZ_RULE_EXPRESSION_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: 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: CZ_UIPAGES_FOR_EXPLNODES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CZ.CZ_UIPAGES_FOR_EXPLNODES_V, object_name:CZ_UIPAGES_FOR_EXPLNODES_V, status:VALID, product: CZ - Configurator , implementation_dba_data: APPS.CZ_UIPAGES_FOR_EXPLNODES_V ,
-
View: CZ_UIPAGES_FOR_EXPLNODES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CZ.CZ_UIPAGES_FOR_EXPLNODES_V, object_name:CZ_UIPAGES_FOR_EXPLNODES_V, status:VALID, product: CZ - Configurator , implementation_dba_data: APPS.CZ_UIPAGES_FOR_EXPLNODES_V ,
-
View: CZ_EXPLNODES_IMAGE_EFF_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CZ.CZ_EXPLNODES_IMAGE_EFF_V, object_name:CZ_EXPLNODES_IMAGE_EFF_V, status:VALID, product: CZ - Configurator , implementation_dba_data: APPS.CZ_EXPLNODES_IMAGE_EFF_V ,
-
Table: CZ_IMP_PS_NODES
12.1.1
owner:CZ, object_type:TABLE, fnd_design_data:CZ.CZ_IMP_PS_NODES, object_name:CZ_IMP_PS_NODES, status:VALID, product: CZ - Configurator , description: Data to be imported (or rejected) into CZ_PS_NODES , implementation_dba_data: CZ.CZ_IMP_PS_NODES ,
-
View: CZ_COMMON_CHILDND_SYSPROPS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CZ.CZ_COMMON_CHILDND_SYSPROPS_V, object_name:CZ_COMMON_CHILDND_SYSPROPS_V, status:VALID, product: CZ - Configurator , implementation_dba_data: APPS.CZ_COMMON_CHILDND_SYSPROPS_V ,
-
Table: CZ_IMP_PS_NODES
12.2.2
owner:CZ, object_type:TABLE, fnd_design_data:CZ.CZ_IMP_PS_NODES, object_name:CZ_IMP_PS_NODES, status:VALID, product: CZ - Configurator , description: Data to be imported (or rejected) into CZ_PS_NODES , implementation_dba_data: CZ.CZ_IMP_PS_NODES ,
-
View: CZ_EXPLNODES_IMAGE_EFF_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CZ.CZ_EXPLNODES_IMAGE_EFF_V, object_name:CZ_EXPLNODES_IMAGE_EFF_V, status:VALID, product: CZ - Configurator , implementation_dba_data: APPS.CZ_EXPLNODES_IMAGE_EFF_V ,
-
Table: CZ_SUB_CON_SETS
12.1.1
owner:CZ, object_type:TABLE, fnd_design_data:CZ.CZ_SUB_CON_SETS, object_name:CZ_SUB_CON_SETS, status:VALID, product: CZ - Configurator , description: NEVER USED , implementation_dba_data: CZ.CZ_SUB_CON_SETS ,
-
Table: CZ_DES_CHART_FEATURES
12.2.2
owner:CZ, object_type:TABLE, fnd_design_data:CZ.CZ_DES_CHART_FEATURES, object_name:CZ_DES_CHART_FEATURES, status:VALID, product: CZ - Configurator , description: Controlling features in each Design Chart , implementation_dba_data: CZ.CZ_DES_CHART_FEATURES ,
-
Table: CZ_GRID_CELLS
12.2.2
owner:CZ, object_type:TABLE, fnd_design_data:CZ.CZ_GRID_CELLS, object_name:CZ_GRID_CELLS, status:VALID, product: CZ - Configurator , description: Contents of explicit compatibility cells , implementation_dba_data: CZ.CZ_GRID_CELLS ,
-
View: CZ_COMMON_CHILDND_SYSPROPS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CZ.CZ_COMMON_CHILDND_SYSPROPS_V, object_name:CZ_COMMON_CHILDND_SYSPROPS_V, status:VALID, product: CZ - Configurator , implementation_dba_data: APPS.CZ_COMMON_CHILDND_SYSPROPS_V ,
-
Table: CZ_COMBO_FEATURES
12.2.2
owner:CZ, object_type:TABLE, fnd_design_data:CZ.CZ_COMBO_FEATURES, object_name:CZ_COMBO_FEATURES, status:VALID, product: CZ - Configurator , description: Explicit compatibility OC/features table , implementation_dba_data: CZ.CZ_COMBO_FEATURES ,
-
Table: CZ_ITEM_TYPES
12.2.2
owner:CZ, object_type:TABLE, fnd_design_data:CZ.CZ_ITEM_TYPES, object_name:CZ_ITEM_TYPES, status:VALID, product: CZ - Configurator , description: Item types , implementation_dba_data: CZ.CZ_ITEM_TYPES ,
-
Table: CZ_SUB_CON_SETS
12.2.2
owner:CZ, object_type:TABLE, fnd_design_data:CZ.CZ_SUB_CON_SETS, object_name:CZ_SUB_CON_SETS, status:VALID, product: CZ - Configurator , description: NEVER USED , implementation_dba_data: CZ.CZ_SUB_CON_SETS ,
-
Table: CZ_EFFECTIVITY_SETS
12.2.2
owner:CZ, object_type:TABLE, fnd_design_data:CZ.CZ_EFFECTIVITY_SETS, object_name:CZ_EFFECTIVITY_SETS, status:VALID, product: CZ - Configurator , description: Table lists named/shared effectivities for reference by effectivity-governed tables. , implementation_dba_data: CZ.CZ_EFFECTIVITY_SETS ,
-
Table: CZ_CONFIG_MESSAGES
12.1.1
owner:CZ, object_type:TABLE, fnd_design_data:CZ.CZ_CONFIG_MESSAGES, object_name:CZ_CONFIG_MESSAGES, status:VALID, product: CZ - Configurator , description: Configuration messages , implementation_dba_data: CZ.CZ_CONFIG_MESSAGES ,
-
Table: CZ_CONFIG_MESSAGES
12.2.2
owner:CZ, object_type:TABLE, fnd_design_data:CZ.CZ_CONFIG_MESSAGES, object_name:CZ_CONFIG_MESSAGES, status:VALID, product: CZ - Configurator , description: Configuration messages , implementation_dba_data: CZ.CZ_CONFIG_MESSAGES ,
-
Table: CZ_GRID_CELLS
12.1.1
owner:CZ, object_type:TABLE, fnd_design_data:CZ.CZ_GRID_CELLS, object_name:CZ_GRID_CELLS, status:VALID, product: CZ - Configurator , description: Contents of explicit compatibility cells , implementation_dba_data: CZ.CZ_GRID_CELLS ,