Search Results cz_node_user_properties_v
Overview
CZ_NODE_USER_PROPERTIES_V is an Oracle E-Business Suite 12.1.1 / 12.2.2 reporting view owned by the APPS schema and delivered as part of the Oracle Configurator (CZ) product family. The view exposes the user-defined property assignments that exist on Configurator model nodes, resolving the relationship between a model structure node (PS_NODE), the properties (characteristics) referenced or captured on that node, and the data type of each property. Because Configurator property data is normalized across several base tables, application developers and report authors use this view as a denormalized read-only projection that is simpler to join than the underlying transactional structures.
The view is defined with a status of VALID and is not itself a data-collection object; it is strictly a query-only construct. The presence of a constant VIEWREV literal of '2006-01-12' in the view text indicates the view definition has been stable across the 12.1.1 and 12.2.2 releases, so queries written against it generally port between the two versions without change.
Underlying Base Objects
The documented base objects referenced by the view are:
- CZ_PS_NODES — the Configurator model structure nodes.
- CZ_PROPERTIES — the master definition of each Configurator property.
- CZ_PS_PROP_VALS — the property values/assignments attached to a node.
- CZ_TYPE_RELATIONSHIPS — type relationship definitions, used here to derive the data type.
- CZ_ITEM_MASTERS — item master records for model items.
- CZ_ITEM_TYPE_PROPERTIES — the properties associated with an item type.
These are referenced through APPS synonyms over the CZ base tables. The view text is a UNION of several branches. The first branch joins nodes to property values directly (PSN.PS_NODE_ID = PSVAL.PS_NODE_ID). The second branch resolves nodes whose node type is 263 and whose reference points to a property-value node. The third branch derives properties from the item's item type via CZ_ITEM_MASTERS and CZ_ITEM_TYPE_PROPERTIES. A fourth branch resolves properties through referenced nodes (REFND.PS_NODE_ID). In every branch, deleted rows are excluded by DELETED_FLAG = '0' predicates on each participating table, and the data type is obtained by matching PRP.DATA_TYPE to CNV.OBJECT_TYPE where REL_TYPE_CODE = 'CNV'.
Key Columns
- PROP_ID — the property identifier (aliased from PROPERTY_ID); the primary join key to property master data.
- NAME — the property name as defined on CZ_PROPERTIES, displayed to the end user.
- PS_NODE_ID — the model structure node to which the property is attached.
- DATA_TYPE — the resolved subject type of the property, obtained from CZ_TYPE_RELATIONSHIPS.
- MUTABLE_FLAG — hard-coded to '0' by the view definition.
- COLLECTION_FLAG — hard-coded to '0' by the view definition.
- PROPERTY_TYPE — hard-coded to '2' by the view definition.
- VIEWREV — the literal view revision date '2006-01-12'.
The constant columns mean the view is intended to expose property-to-node association and data typing only; mutability, collection semantics, and property type classification are not varied by row.
Common Use Cases and Queries
Typical scenarios include generating a listing of user properties defined on a given Configurator model node, auditing which properties are reachable through an item type, and feeding property metadata into integration extracts. A representative query to list properties for a node is:
SELECT p.PS_NODE_ID, p.PROP_ID, p.NAME, p.DATA_TYPE FROM APPS.CZ_NODE_USER_PROPERTIES_V p WHERE p.PS_NODE_ID = :node_id ORDER BY p.NAME;
To find all nodes carrying a named property:
SELECT p.PS_NODE_ID, p.PROP_ID, p.DATA_TYPE FROM APPS.CZ_NODE_USER_PROPERTIES_V p WHERE p.NAME = :property_name;
Because the view already excludes soft-deleted records and resolves the data type, it is preferred over ad-hoc joins against CZ_PS_NODES, CZ_PS_PROP_VALS, and CZ_PROPERTIES for read-only reporting. Queries are best restricted by PS_NODE_ID or PROP_ID to limit the cost of the underlying UNION, and the view should be accessed with APPS privileges or a suitable synonym.
-
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 ,
-
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: APPS.CZ_NODE_RULE_PROPERTIES_V
12.2.2
-
VIEW: APPS.CZ_NODE_RULE_PROPERTIES_V
12.1.1
-
SYNONYM: APPS.CZ_TYPE_RELATIONSHIPS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:CZ_TYPE_RELATIONSHIPS, status:VALID,
-
VIEW: APPS.CZ_NODE_JAVA_PROPERTIES_V
12.1.1
-
VIEW: APPS.CZ_NODE_JAVA_PROPERTIES_V
12.2.2
-
PACKAGE BODY: APPS.CZ_TYPES
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:CZ_TYPES, status:VALID,
-
PACKAGE BODY: APPS.CZ_TYPES
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:CZ_TYPES, status:VALID,
-
SYNONYM: APPS.CZ_TYPE_RELATIONSHIPS
12.2.2
owner:APPS, object_type:SYNONYM, object_name:CZ_TYPE_RELATIONSHIPS, status:VALID,
-
SYNONYM: APPS.CZ_PS_PROP_VALS
12.2.2
owner:APPS, object_type:SYNONYM, object_name:CZ_PS_PROP_VALS, status:VALID,
-
View: CZ_NODE_JAVA_PROPERTIES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CZ.CZ_NODE_JAVA_PROPERTIES_V, object_name:CZ_NODE_JAVA_PROPERTIES_V, status:VALID, product: CZ - Configurator , implementation_dba_data: APPS.CZ_NODE_JAVA_PROPERTIES_V ,
-
SYNONYM: APPS.CZ_PS_PROP_VALS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:CZ_PS_PROP_VALS, status:VALID,
-
VIEW: APPS.CZ_NODE_RULE_PROPERTIES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CZ.CZ_NODE_RULE_PROPERTIES_V, object_name:CZ_NODE_RULE_PROPERTIES_V, status:VALID,
-
SYNONYM: APPS.CZ_ITEM_TYPE_PROPERTIES
12.1.1
owner:APPS, object_type:SYNONYM, object_name:CZ_ITEM_TYPE_PROPERTIES, status:VALID,
-
SYNONYM: APPS.CZ_ITEM_TYPE_PROPERTIES
12.2.2
owner:APPS, object_type:SYNONYM, object_name:CZ_ITEM_TYPE_PROPERTIES, status:VALID,
-
VIEW: APPS.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,
-
VIEW: APPS.CZ_NODE_RULE_PROPERTIES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CZ.CZ_NODE_RULE_PROPERTIES_V, object_name:CZ_NODE_RULE_PROPERTIES_V, status:VALID,
-
VIEW: APPS.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,
-
SYNONYM: APPS.CZ_ITEM_MASTERS
12.2.2
owner:APPS, object_type:SYNONYM, object_name:CZ_ITEM_MASTERS, status:VALID,
-
SYNONYM: APPS.CZ_PROPERTIES
12.1.1
owner:APPS, object_type:SYNONYM, object_name:CZ_PROPERTIES, status:VALID,
-
SYNONYM: APPS.CZ_PROPERTIES
12.2.2
owner:APPS, object_type:SYNONYM, object_name:CZ_PROPERTIES, status:VALID,
-
View: CZ_NODE_JAVA_PROPERTIES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CZ.CZ_NODE_JAVA_PROPERTIES_V, object_name:CZ_NODE_JAVA_PROPERTIES_V, status:VALID, product: CZ - Configurator , implementation_dba_data: APPS.CZ_NODE_JAVA_PROPERTIES_V ,
-
VIEW: APPS.CZ_NODE_JAVA_PROPERTIES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CZ.CZ_NODE_JAVA_PROPERTIES_V, object_name:CZ_NODE_JAVA_PROPERTIES_V, status:VALID,
-
VIEW: APPS.CZ_NODE_JAVA_PROPERTIES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CZ.CZ_NODE_JAVA_PROPERTIES_V, object_name:CZ_NODE_JAVA_PROPERTIES_V, status:VALID,
-
View: CZ_NODE_RULE_PROPERTIES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CZ.CZ_NODE_RULE_PROPERTIES_V, object_name:CZ_NODE_RULE_PROPERTIES_V, status:VALID, product: CZ - Configurator , implementation_dba_data: APPS.CZ_NODE_RULE_PROPERTIES_V ,
-
View: CZ_NODE_RULE_PROPERTIES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CZ.CZ_NODE_RULE_PROPERTIES_V, object_name:CZ_NODE_RULE_PROPERTIES_V, status:VALID, product: CZ - Configurator , implementation_dba_data: APPS.CZ_NODE_RULE_PROPERTIES_V ,
-
SYNONYM: APPS.CZ_ITEM_MASTERS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:CZ_ITEM_MASTERS, status:VALID,
-
SYNONYM: APPS.CZ_PS_NODES
12.2.2
owner:APPS, object_type:SYNONYM, object_name:CZ_PS_NODES, status:VALID,
-
SYNONYM: APPS.CZ_PS_NODES
12.1.1
owner:APPS, object_type:SYNONYM, object_name:CZ_PS_NODES, status:VALID,
-
12.1.1 FND Design Data
12.1.1
-
12.2.2 DBA Data
12.2.2
-
12.2.2 FND Design Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
APPS.CZ_TYPES SQL Statements
12.1.1
-
APPS.CZ_TYPES SQL Statements
12.2.2
-
APPS.CZ_TYPES dependencies on CZ_NODE_USER_PROPERTIES_V
12.1.1
-
APPS.CZ_TYPES dependencies on CZ_NODE_USER_PROPERTIES_V
12.2.2
-
PACKAGE BODY: APPS.CZ_TYPES
12.1.1
-
PACKAGE BODY: APPS.CZ_TYPES
12.2.2
-
APPS.CZ_TYPES dependencies on DUAL
12.2.2
-
APPS.CZ_TYPES dependencies on DUAL
12.1.1
-
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 ,