Search Results value_orig_sys_ref
Overview
APPS.CZ_PSNODE_DIRECTPROP_INFO_V is a reporting and integration view within the Oracle E-Business Suite (EBS) product configuration and rules engine schema, historically associated with Oracle Configurator and its ETRM (Enterprise Transaction and Rules Management) lineage. It exposes the property values assigned directly to a Product Structure Node (PS node), together with the descriptive metadata required to render those properties in a user interface: data types, translated display text, default values, attached property flags, originating system references, and associated seeded imagery.
The view is a denormalized projection rather than a base storage object. It joins property-value rows from CZ_PSNODE_PROPVAL_V to image and lookup metadata so that a single query returns both the semantic content of a node property and the presentation attributes associated with the PRP ("Property") object type. The name searched by the user, PROP_ATTACHES, is a column carried by CZ_PSNODE_PROPVAL_V that indicates whether a property has attached documents, media, or supplementary records. Because the view selects this column, queries against CZ_PSNODE_DIRECTPROP_INFO_V are frequently used to identify nodes whose properties carry attachments — for example, during migration validation, attachment auditing, or UI configuration review.
Underlying Base Objects
The view is documented as being defined over four referenced base objects:
- CZ_PSNODE_PROPVAL_V (VIEW) — the primary driving source, supplying node identity, property identity, data type, values, default values, inheritance, node type, and the
PROP_ATTACHESflag. - CZ_UI_PATHED_IMAGES_V (VIEW) — supplies
IMAGE_FILE,FULL_IMAGE_PATH, and related imagery, constrained in the join to seeded images (SEEDED_FLAG = '1'),UI_DEF_ID = 0, andIMAGE_USAGE_CODE = 30. - CZ_RPOBJECTTYPES_LKV (VIEW) — a lookup view that anchors the entity type; the join filters to
DATA_VALUE = 'PRP', the object type for properties, and matches itsNUMERIC_ID_VALUEto the image entity code. - CZ_INTL_TEXTS (SYNONYM) — provides translated display strings for multilingual property values, correlated through scalar subqueries using
INTL_TEXT_IDand restricted toDELETED_FLAG = '0'withDATA_TYPE = 8.
The supplementary metadata confirms CZ_RPOBJECTTYPES_LKV as a view object type and lists CZ_UI_PATHED_IMAGES_V as a view, while CZ_INTL_TEXTS is presented as a synonym. The inner join to CZ_RPOBJECTTYPES_LKV and CZ_UI_PATHED_IMAGES_V means a row is only returned when a matching seeded PRP image record exists, which is an important behavioral constraint when reporting on large property sets.
Key Columns
- PS_NODE_ID / PS_NODE_NAME — identifier and display name of the product structure node that owns the property.
- PROPERTY_ID / PROPERTY_NAME — identifier and name of the property itself.
- DATA_TYPE — governs interpretation of value columns; the value
8denotes a translated-text property, triggering the CZ_INTL_TEXTS lookups. - PROPERTY_VALUE / PROPERTY_NUM_VALUE — alphanumeric or numeric value for the property; for translated text, PROPERTY_NUM_VALUE is used as the INTL_TEXT_ID.
- DEFAULT_VALUE / DEF_NUM_VALUE — default value and its numeric counterpart.
- PROP_ATTACHES — indicates whether the property carries attachments.
- ITEM_ID / ITEM_TYPE_ID — identifies the item and item type context of the node.
- ORIG_SYS_REF, VALUE_ORIG_SYS_REF, PROPERTY_ORIG_SYS_REF — originating system references for the row, value, and property, used in integration and cross-system reconciliation.
- TRANSLATED_TEXT / DEF_TRANSLATED_TEXT — resolved display strings from CZ_INTL_TEXTS for value and default.
- IMAGE_FILE, FULL_IMAGE_PATH, ALT_TEXT — presentation attributes sourced from the seeded image view and the object type lookup.
- PS_NODE_TYPE, INHERITED_FLAG, SRC_APPLICATION_ID — node classification, whether the value is inherited, and the source application.
Common Use Cases and Queries
Typical scenarios include auditing which node properties carry attachments, reviewing UI rendering metadata for properties, validating multilingual defaults, and reconciling properties by originating system reference.
Listing properties with attachments for a given node:
SELECT ps_node_name, property_name, data_type, prop_attaches FROM apps.cz_psnode_directprop_info_v WHERE prop_attaches IS NOT NULL AND ps_node_id = :p_node_id;
Retrieving translated display text and default values for multilingual properties:
SELECT property_name, property_value, translated_text,
default_value, def_translated_text
FROM apps.cz_psnode_directprop_info_v
WHERE data_type = 8
AND ps_node_id = :p_node_id;
Inventory by originating system for integration checks:
SELECT orig_sys_ref, value_orig_sys_ref, property_orig_sys_ref,
COUNT(*) rows_count
FROM apps.cz_psnode_directprop_info_v
WHERE src_application_id = :p_app_id
GROUP BY orig_sys_ref, value_orig_sys_ref, property_orig_sys_ref;
Because the view is not indexed independently, performance-sensitive queries should constrain on PS_NODE_ID, PROPERTY_ID, or ITEM_ID, and the mandatory seeded-image join must be considered when counting properties expected to lack imagery.
-
VIEW: APPS.CZ_PSNODE_DIRECTPROP_INFO_V
12.2.2
-
View: CZ_PSNODE_PROPERTY_DETAILS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CZ.CZ_PSNODE_PROPERTY_DETAILS_V, object_name:CZ_PSNODE_PROPERTY_DETAILS_V, status:VALID, product: CZ - Configurator , implementation_dba_data: APPS.CZ_PSNODE_PROPERTY_DETAILS_V ,
-
VIEW: APPS.CZ_PSNODE_PROPERTY_DETAILS_V
12.1.1
-
View: CZ_PSNODE_PROPERTY_DETAILS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CZ.CZ_PSNODE_PROPERTY_DETAILS_V, object_name:CZ_PSNODE_PROPERTY_DETAILS_V, status:VALID, product: CZ - Configurator , implementation_dba_data: APPS.CZ_PSNODE_PROPERTY_DETAILS_V ,
-
VIEW: APPS.CZ_PSNODE_PROPERTY_DETAILS_V
12.2.2
-
View: CZ_PSNODE_DIRECTPROP_INFO_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CZ.CZ_PSNODE_DIRECTPROP_INFO_V, object_name:CZ_PSNODE_DIRECTPROP_INFO_V, status:VALID, product: CZ - Configurator , implementation_dba_data: APPS.CZ_PSNODE_DIRECTPROP_INFO_V ,
-
View: CZ_PSNODE_DIRECTPROP_INFO_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CZ.CZ_PSNODE_DIRECTPROP_INFO_V, object_name:CZ_PSNODE_DIRECTPROP_INFO_V, status:VALID, product: CZ - Configurator , implementation_dba_data: APPS.CZ_PSNODE_DIRECTPROP_INFO_V ,
-
VIEW: APPS.CZ_PSNODE_DIRECTPROP_INFO_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CZ.CZ_PSNODE_DIRECTPROP_INFO_V, object_name:CZ_PSNODE_DIRECTPROP_INFO_V, status:VALID,
-
VIEW: APPS.CZ_PSNODE_DIRECTPROP_INFO_V
12.1.1
-
VIEW: APPS.CZ_PSNODE_DIRECTPROP_INFO_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CZ.CZ_PSNODE_DIRECTPROP_INFO_V, object_name:CZ_PSNODE_DIRECTPROP_INFO_V, status:VALID,
-
VIEW: APPS.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,
-
VIEW: APPS.CZ_PSNODE_PROPERTY_DETAILS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CZ.CZ_PSNODE_PROPERTY_DETAILS_V, object_name:CZ_PSNODE_PROPERTY_DETAILS_V, status:VALID,
-
VIEW: APPS.CZ_PSNODE_PROPERTY_DETAILS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CZ.CZ_PSNODE_PROPERTY_DETAILS_V, object_name:CZ_PSNODE_PROPERTY_DETAILS_V, status:VALID,
-
VIEW: APPS.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,
-
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_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: APPS.CZ_PSNODE_PROPVAL_V
12.2.2
-
VIEW: APPS.CZ_PSNODE_PROPVAL_V
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 ,