Search Results sys_prop_name
Overview
APPS.CZ_NODETYPE_PROPERTIES_V is a reporting and integration view in the Oracle E-Business Suite configuration/constraint engine (CZ schema surfaced through the APPS synonym layer). It presents the cross-product relationship between node types, system properties, and the property-to-node attachments defined in the rules model. In practical terms, the view answers the question: "For a given node type, which system properties are attached, and under what system property type, data type, and mutability?" This makes it the canonical row source for introspection of the configuration model, replacement of ad-hoc joins across the three underlying views, and any integration that must enumerate or filter system properties by node type.
The view is exposed in both EBS 12.1.1 and 12.2.2 through the APPS schema, and the underlying CZ objects are consistent with the 12.2.2 ETRM metadata documented for this object. Because APPS is the publishing schema, the view is available to any responsibility or custom code with APPS execute/select privileges, avoiding the need to grant directly on the CZ views.
Underlying Base Objects
The view is defined over three views from the CZ schema:
- CZ_CONVERSION_RELS_V (aliased NODEREL) — supplies the node relationship, contributing OBJECT_TYPE as the node type and SUBJECT_TYPE as the join key.
- CZ_SYSTEM_PROPERTY_RELS_V (aliased PROPREL) — supplies the attachment of a property to a node type, contributing SUBJECT_TYPE (joined to NODEREL.SUBJECT_TYPE), OBJECT_TYPE (joined to the property rule ID), and REL_TYPE_CODE as the system property type.
- CZ_SYSTEM_PROPERTIES_V (aliased SYSPROP) — supplies the property definition itself: RULE_ID, NAME, DATA_TYPE, MUTABLE_FLAG, COLLECTION_FLAG, SEQ_NBR, and CONFIG_ENGINE_TYPE.
The joins are equality-based: NODEREL.SUBJECT_TYPE = PROPREL.SUBJECT_TYPE and PROPREL.OBJECT_TYPE = SYSPROP.RULE_ID. A DISTINCT is applied to the projection, which collapses duplicate rows that arise when multiple relationship paths resolve to the same node type/property pairing.
Key Columns
- PROP_ID — SYSPROP.RULE_ID; the internal identifier of the system property rule.
- NAME — CONCAT(SYSPROP.NAME, '()'); the display form with parentheses, suitable for UI or reporting labels.
- SYS_PROP_NAME — the raw system property name; this is the column users search on when looking up "sys_prop_name".
- NODE_TYPE — NODEREL.OBJECT_TYPE; the node type to which the property applies.
- ATTACHED_TO_NODE_TYPE — PROPREL.SUBJECT_TYPE; the node type recorded on the property relationship.
- DATA_TYPE — the property's data type (e.g., string, number, boolean, collection).
- MUTABLE_FLAG — indicates whether the property value may be modified at runtime.
- COLLECTION_FLAG — indicates whether the property holds a collection rather than a scalar.
- SEQ_NBR — ordering sequence for display or processing.
- SYSTEM_PROPERTY_TYPE — PROPREL.REL_TYPE_CODE; classifies the relationship type.
- CONFIG_ENGINE_TYPE — identifies the configuration engine context for the property.
Common Use Cases and Queries
Typical uses include generating metadata reports of which properties are attached to a node type, filtering properties by data type or mutability for validation tooling, and driving integration or UI generation from the model. A basic enumeration by name:
SELECT node_type, sys_prop_name, data_type, mutable_flag, collection_flag, seq_nbr FROM apps.cz_nodetype_properties_v WHERE sys_prop_name = :p_name ORDER BY node_type, seq_nbr;SELECT DISTINCT node_type, sys_prop_name FROM apps.cz_nodetype_properties_v WHERE node_type = :p_node_type ORDER BY sys_prop_name;SELECT sys_prop_name, system_property_type, config_engine_type FROM apps.cz_nodetype_properties_v WHERE mutable_flag = 'Y' AND collection_flag = 'N';
Because the view is built on three views and applies DISTINCT, queries that filter on a small number of columns perform best; avoid selecting all columns when only a subset is required. The view is read-only and should not be used as a target for DML; property definitions and relationships must be maintained through the supported configuration engine APIs.
-
VIEW: APPS.CZ_NODETYPE_PROPERTIES_V
12.1.1
-
VIEW: APPS.CZ_NODE_CAPTION_PROPERTIES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CZ.CZ_NODE_CAPTION_PROPERTIES_V, object_name:CZ_NODE_CAPTION_PROPERTIES_V, status:VALID,
-
VIEW: APPS.CZ_NODETYPE_SYSPROPS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CZ.CZ_NODETYPE_SYSPROPS_V, object_name:CZ_NODETYPE_SYSPROPS_V, status:VALID,
-
VIEW: APPS.CZ_SIGNATURE_SYSPROPS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CZ.CZ_SIGNATURE_SYSPROPS_V, object_name:CZ_SIGNATURE_SYSPROPS_V, status:VALID,
-
VIEW: APPS.CZ_NODE_DISPCOND_PROPERTIES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CZ.CZ_NODE_DISPCOND_PROPERTIES_V, object_name:CZ_NODE_DISPCOND_PROPERTIES_V, status:VALID,
-
VIEW: APPS.CZ_NODETYPE_PROPERTIES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CZ.CZ_NODETYPE_PROPERTIES_V, object_name:CZ_NODETYPE_PROPERTIES_V, status:VALID,
-
VIEW: APPS.CZ_NODE_CAPTION_PROPERTIES_V
12.1.1
-
View: CZ_NODETYPE_PROPERTIES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CZ.CZ_NODETYPE_PROPERTIES_V, object_name:CZ_NODETYPE_PROPERTIES_V, status:VALID, product: CZ - Configurator , implementation_dba_data: APPS.CZ_NODETYPE_PROPERTIES_V ,
-
View: CZ_NODETYPE_PROPERTIES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CZ.CZ_NODETYPE_PROPERTIES_V, object_name:CZ_NODETYPE_PROPERTIES_V, status:VALID, product: CZ - Configurator , implementation_dba_data: APPS.CZ_NODETYPE_PROPERTIES_V ,
-
View: CZ_NODE_DISPCOND_PROPERTIES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CZ.CZ_NODE_DISPCOND_PROPERTIES_V, object_name:CZ_NODE_DISPCOND_PROPERTIES_V, status:VALID, product: CZ - Configurator , implementation_dba_data: APPS.CZ_NODE_DISPCOND_PROPERTIES_V ,
-
View: CZ_NODE_CAPTION_PROPERTIES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CZ.CZ_NODE_CAPTION_PROPERTIES_V, object_name:CZ_NODE_CAPTION_PROPERTIES_V, status:VALID, product: CZ - Configurator , implementation_dba_data: APPS.CZ_NODE_CAPTION_PROPERTIES_V ,
-
View: CZ_NODE_DISPCOND_PROPERTIES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CZ.CZ_NODE_DISPCOND_PROPERTIES_V, object_name:CZ_NODE_DISPCOND_PROPERTIES_V, status:VALID, product: CZ - Configurator , implementation_dba_data: APPS.CZ_NODE_DISPCOND_PROPERTIES_V ,
-
View: CZ_NODE_CAPTION_PROPERTIES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CZ.CZ_NODE_CAPTION_PROPERTIES_V, object_name:CZ_NODE_CAPTION_PROPERTIES_V, status:VALID, product: CZ - Configurator , implementation_dba_data: APPS.CZ_NODE_CAPTION_PROPERTIES_V ,
-
VIEW: APPS.CZ_NODETYPE_PROPERTIES_V
12.2.2
-
VIEW: APPS.CZ_NODETYPE_PROPERTIES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CZ.CZ_NODETYPE_PROPERTIES_V, object_name:CZ_NODETYPE_PROPERTIES_V, status:VALID,
-
VIEW: APPS.CZ_SIGNATURE_SYSPROPS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CZ.CZ_SIGNATURE_SYSPROPS_V, object_name:CZ_SIGNATURE_SYSPROPS_V, status:VALID,
-
VIEW: APPS.CZ_NODE_DISPCOND_PROPERTIES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CZ.CZ_NODE_DISPCOND_PROPERTIES_V, object_name:CZ_NODE_DISPCOND_PROPERTIES_V, status:VALID,
-
VIEW: APPS.CZ_NODE_CAPTION_PROPERTIES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CZ.CZ_NODE_CAPTION_PROPERTIES_V, object_name:CZ_NODE_CAPTION_PROPERTIES_V, status:VALID,
-
VIEW: APPS.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,
-
VIEW: APPS.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,
-
VIEW: APPS.CZ_NODE_DISPCOND_PROPERTIES_V
12.2.2
-
VIEW: APPS.CZ_NODE_CAPTION_PROPERTIES_V
12.2.2
-
VIEW: APPS.CZ_NODE_DISPCOND_PROPERTIES_V
12.1.1
-
View: CZ_NODETYPE_SYSPROPS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CZ.CZ_NODETYPE_SYSPROPS_V, object_name:CZ_NODETYPE_SYSPROPS_V, status:VALID, product: CZ - Configurator , implementation_dba_data: APPS.CZ_NODETYPE_SYSPROPS_V ,
-
VIEW: APPS.CZ_NODETYPE_SYSPROPS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CZ.CZ_NODETYPE_SYSPROPS_V, object_name:CZ_NODETYPE_SYSPROPS_V, status:VALID,
-
VIEW: APPS.CZ_NODETYPE_SYSPROPS_V
12.2.2
-
View: CZ_NODETYPE_SYSPROPS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CZ.CZ_NODETYPE_SYSPROPS_V, object_name:CZ_NODETYPE_SYSPROPS_V, status:VALID, product: CZ - Configurator , implementation_dba_data: APPS.CZ_NODETYPE_SYSPROPS_V ,
-
View: CZ_SIGNATURE_SYSPROPS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CZ.CZ_SIGNATURE_SYSPROPS_V, object_name:CZ_SIGNATURE_SYSPROPS_V, status:VALID, product: CZ - Configurator , implementation_dba_data: APPS.CZ_SIGNATURE_SYSPROPS_V ,
-
View: CZ_SIGNATURE_SYSPROPS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CZ.CZ_SIGNATURE_SYSPROPS_V, object_name:CZ_SIGNATURE_SYSPROPS_V, status:VALID, product: CZ - Configurator , implementation_dba_data: APPS.CZ_SIGNATURE_SYSPROPS_V ,
-
VIEW: APPS.CZ_NODETYPE_SYSPROPS_V
12.1.1
-
VIEW: APPS.CZ_SIGNATURE_SYSPROPS_V
12.2.2
-
VIEW: APPS.CZ_SIGNATURE_SYSPROPS_V
12.1.1
-
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 ,
-
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 ,
-
PACKAGE: APPS.CZ_UPGRADE
12.1.1
-
PACKAGE: APPS.CZ_UPGRADE
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 ,