Search Results property_type
Overview
APPS.CZ_NODE_USER_PROPERTIES_V is a reporting and integration view in the Oracle E-Business Suite (EBS) 12.1.1 / 12.2.2 environment, belonging to the ETRM (Enterprise Tax and Regulatory Management, historically the Configurator/Contracts "CZ" schema family). The view presents properties attached to configuration nodes ("ps_nodes") from the perspective of user-facing property definitions. Each row exposes a property identifier, its name, the node to which it applies, the data type, and control flags describing how the property behaves. The view is a UNION of four SELECT branches, each joining the same property definition table against a different association path — direct node values, node-type reference relationships, item-master item-type properties, and additional node-reference relationships.
A constant literal property_type = '2' is emitted in every branch, which is significant given the user's search term "property_type". This constant classifies all rows returned by this view as a single property type (value '2'), allowing callers to distinguish this view's output from other property views that emit different property_type values. Other literals include mutable_flag = '0', collection_flag = '0', and viewrev set to '2006-01-12', a version marker indicating the view revision date. These constants make the view a stable, read-only projection suitable for reporting rather than transactional updates.
Underlying Base Objects
The documented referenced base objects are CZ_PROPERTIES, CZ_PS_NODES, CZ_PS_PROP_VALS, CZ_TYPE_RELATIONSHIPS, CZ_ITEM_MASTERS, and CZ_ITEM_TYPE_PROPERTIES, all resolved as SYNONYMs owned by APPS. The view is defined strictly over these synonyms, consistent with EBS convention that public apps-level views sit on top of synonyms to underlying CZ tables.
- CZ_PROPERTIES — supplies property definitions; joined on
property_idand filtered bydeleted_flag = '0'. Providesnameanddata_type. - CZ_PS_NODES — supplies the node context; joined on
ps_node_id(or viareference_id,item_id) and filtered bydeleted_flag = '0'. - CZ_PS_PROP_VALS — supplies the actual property values assigned to a node; joined on
ps_node_idandproperty_id, filtered bydeleted_flag = '0'. - CZ_TYPE_RELATIONSHIPS — provides the resolved data type through
subject_type, filtered byrel_type_code = 'CNV'anddeleted_flag = '0'. - CZ_ITEM_MASTERS and CZ_ITEM_TYPE_PROPERTIES — used in the item-master branch to associate properties defined at the item-type level.
Key Columns
- prop_id — property identifier from CZ_PROPERTIES.property_id.
- name — the user-facing property name.
- ps_node_id — the configuration node the property applies to.
- data_type — resolved type from CZ_TYPE_RELATIONSHIPS.subject_type via the CNV relationship.
- mutable_flag — constant '0', indicating the property is not treated as mutable in this projection.
- collection_flag — constant '0', indicating no collection semantics.
- property_type — constant '2' across all branches, the discriminator key for this view.
- viewrev — constant '
2006-01-12', the view revision marker.
Common Use Cases and Queries
The view is typically used to enumerate user properties per node for reporting, integrations, or migration extracts. Filtering on property_type confirms the row source, and joining back to CZ_PS_NODES enriches with node metadata.
Enumerate properties for a given node:
SELECT prop_id, name, ps_node_id, data_type, property_type
FROM apps.cz_node_user_properties_v
WHERE ps_node_id = :p_node_id AND property_type = '2';
Group by data type to profile property usage:
SELECT data_type, COUNT(*) FROM apps.cz_node_user_properties_v GROUP BY data_type;
Because all branches enforce deleted_flag = '0' on the underlying tables, the view inherently excludes logically deleted properties, nodes, values, and relationships, making it safe for operational reporting without additional soft-delete predicates.
-
VIEW: APPS.CZ_NODE_USER_PROPERTIES_V
12.1.1
-
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_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_USER_PROPERTIES_V
12.2.2
-
VIEW: FA.FA_PROPTAX_REP_ITF#
12.2.2
-
VIEW: APPS.CZ_NODE_RULE_PROPERTIES_V
12.1.1
-
View: CZ_NODE_NO_PROPERTIES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CZ.CZ_NODE_NO_PROPERTIES_V, object_name:CZ_NODE_NO_PROPERTIES_V, status:VALID, product: CZ - Configurator , implementation_dba_data: APPS.CZ_NODE_NO_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 ,
-
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: SYS.DBFS_CONTENT_PROPERTIES
12.2.2
-
VIEW: APPS.CZ_NODE_RULE_PROPERTIES_V
12.2.2
-
VIEW: APPS.CZ_NODE_JAVA_PROPERTIES_V
12.2.2
-
VIEW: APPS.CZ_NODE_JAVA_PROPERTIES_V
12.1.1
-
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_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 ,
-
VIEW: SYS.DBFS_CONTENT_PROPERTIES
12.1.1
-
View: CZ_NODE_NO_PROPERTIES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CZ.CZ_NODE_NO_PROPERTIES_V, object_name:CZ_NODE_NO_PROPERTIES_V, status:VALID, product: CZ - Configurator , implementation_dba_data: APPS.CZ_NODE_NO_PROPERTIES_V ,
-
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,
-
VIEW: APPS.CZ_NODE_NO_PROPERTIES_V
12.1.1
-
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_NODE_NO_PROPERTIES_V
12.2.2
-
VIEW: SYS.DBFS_CONTENT_PROPERTIES
12.1.1
owner:SYS, object_type:VIEW, object_name:DBFS_CONTENT_PROPERTIES, status:VALID,
-
VIEW: APPS.CZ_NODE_CAPTION_PROPERTIES_V
12.1.1
-
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_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,
-
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: SYS.DBFS_CONTENT_PROPERTIES
12.2.2
owner:SYS, object_type:VIEW, object_name:DBFS_CONTENT_PROPERTIES, 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: APPS.CZ_NODE_NO_PROPERTIES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CZ.CZ_NODE_NO_PROPERTIES_V, object_name:CZ_NODE_NO_PROPERTIES_V, status:VALID,
-
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_NO_PROPERTIES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CZ.CZ_NODE_NO_PROPERTIES_V, object_name:CZ_NODE_NO_PROPERTIES_V, 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_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.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_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_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: FA.FA_PROPTAX_REP_ITF#
12.2.2
owner:FA, object_type:VIEW, object_name:FA_PROPTAX_REP_ITF#, status:VALID,
-
TABLE: FEM.FEM_TABLE_PROPERTIES
12.1.1
owner:FEM, object_type:TABLE, object_name:FEM_TABLE_PROPERTIES, status:VALID,
-
VIEW: SYS.USER_AW_PROP
12.1.1
owner:SYS, object_type:VIEW, object_name:USER_AW_PROP, status:VALID,
-
VIEW: SYS.ALL_AW_PROP
12.1.1
owner:SYS, object_type:VIEW, object_name:ALL_AW_PROP, status:VALID,
-
VIEW: SYS.DBA_AW_PROP
12.1.1
owner:SYS, object_type:VIEW, object_name:DBA_AW_PROP, status:VALID,
-
TABLE: FA.FA_PROPTAX_REP_ITF
12.1.1
owner:FA, object_type:TABLE, fnd_design_data:OFA.FA_PROPTAX_REP_ITF, object_name:FA_PROPTAX_REP_ITF, status:VALID,
-
TABLE: FA.FA_PROPTAX_REP_ITF
12.2.2
owner:FA, object_type:TABLE, fnd_design_data:OFA.FA_PROPTAX_REP_ITF, object_name:FA_PROPTAX_REP_ITF, status:VALID,
-
PACKAGE: APPS.FARX_TAX_PKG
12.1.1
-
PACKAGE: APPS.FARX_TAX_PKG
12.2.2