Search Results rule_type_description
Overview
APPS.CZ_PSNODE_REFRULE_IMAGES_V is a reporting and integration view within the Oracle E-Business Suite (EBS) 12.1.1 and 12.2.2 Oracle Configurator and Oracle Advanced Product Catalog schema. It exposes configuration rule definitions from the model structure (PS node rules) joined with the imagery, labels, and descriptive text associated with rule types. The view is designed to present presentation-layer metadata — icons, alternate text, and human-readable labels — alongside the technical definitions of rules attached to nodes in a configuration model.
The view is particularly relevant when applications or reports require a descriptive representation of rule types rather than internal numeric codes. The column rule_type_description is derived from RIMG.ALT_TEXT aliased as RULE_TYPE_DESCRIPTION, mapping an image record's alternate text to a rule type so that user-facing text can be surfaced for a given rule node. This makes the view useful for documentation, catalog rendering, and rule auditing interfaces.
Underlying Base Objects
The view is defined over two principal sources: CZ_PSNODE_RULE_REFS_V (aliased P2RUL) and CZ_RULETYPE_IMAGES_V (aliased RIMG). The join is an outer join on two image-selection criteria: rimg.referenced_usage_flag(+) = P2RUL.REFERENCED_RULE_FLAG and rimg.entity_code(+) = P2RUL.detailed_rule_type. This ensures rule rows are preserved even where no matching image record exists.
The documented dependencies include CZ_EFFECTIVITY_SETS (synonym), CZ_PSNODE_RULE_REFS_V (view), CZ_RULETYPE_IMAGES_V (view), and the CZ_UTILS and FND_PROFILE packages, which are used for effectivity and profile-option handling in configuration contexts. The union-all structure suggests a second branch supplies additional rule rows (annotation or component-attached rules) sharing the same column projection. Effects are governed by the effective_from and effective_until ranges, with EFFECTIVITY_FILTER set to 'N' in the exposed query branch.
Key Columns
- MODEL_ID, MODEL_REF_EXPL_ID, PSN_MODEL_ID — identify the configuration model and its reference explanation node.
- PS_NODE_ID, PSN_PS_NODE_TYPE, PS_NODE_NAME — the structure node to which the rule is attached.
- RULE_ID, RULE_NAME, RULE_TYPE, DETAILED_RULE_TYPE — core rule identity and typeclassification.
- rule_type_code / rule_type_label / rule_type_description — derived from RIMG.DATA_VALUE, VALUE_LABEL, and ALT_TEXT respectively; these provide the code, label, and descriptive text for the rule type.
- RULETYPE_DATATYPE — computed via DECODE on RULE_TYPE (200 or 199 mapped to a datatype marker).
- expr_root_rule_template_id — computed expression root template identifier for presentation rules.
- REFERENCED_RULE_FLAG, REFERENCED_USAGE_FLAG, IMAGE_FILE, FULL_IMAGE_PATH — image and reference linkage metadata.
- EFFECTIVE_FROM, EFFECTIVE_UNTIL, EFFECTIVITY_SET_ID, EFFECTIVITY_FILTER — effectivity controls.
- RULE_TEXT, DESC_TEXT, rule_description, NOTES — textual rule content.
- SEEDED_FLAG, INVALID_FLAG, MUTABLE_FLAG, DISABLED_FLAG — status flags.
- CHECKOUT_USER, ORIG_SYS_REF — change-management and source-system references.
Common Use Cases and Queries
A typical use is to retrieve user-facing descriptions for rule types attached to nodes, which is where the rule_type_description column is most valuable:
SELECT ps_node_name, rule_name, rule_type,
rule_type_code, rule_type_label, rule_type_description
FROM apps.cz_psnode_refrule_images_v
WHERE model_id = :p_model_id
ORDER BY seq_nbr;
Another scenario lists rules with their associated images for catalog rendering:
SELECT rule_id, rule_name, image_file, full_image_path FROM apps.cz_psnode_refrule_images_v WHERE referenced_rule_flag = 'Y' AND effective_from <= SYSDATE;
The view also supports effectivity and audit reporting, filtering on effective_until or invalid_flag, and is commonly queried through CZ_UTILS profile context to honor the active operating unit or configuration context. Because the view aliases multiple source columns to consumer-friendly names, it is well suited as a foundation for custom reports, OAF/ADF pages, and integration extracts that require both technical rule identifiers and descriptive imagery metadata.
-
VIEW: APPS.CZ_PSNODE_REFRULE_IMAGES_V
12.1.1
-
View: CZ_TYPED_RULES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CZ.CZ_TYPED_RULES_V, object_name:CZ_TYPED_RULES_V, status:VALID, product: CZ - Configurator , implementation_dba_data: APPS.CZ_TYPED_RULES_V ,
-
View: CZ_TYPED_RULES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CZ.CZ_TYPED_RULES_V, object_name:CZ_TYPED_RULES_V, status:VALID, product: CZ - Configurator , implementation_dba_data: APPS.CZ_TYPED_RULES_V ,
-
VIEW: APPS.CZ_TYPED_RULES_V
12.1.1
-
VIEW: APPS.CZ_TYPED_RULES_V
12.2.2
-
View: CZ_PSNODE_REFRULE_IMAGES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CZ.CZ_PSNODE_REFRULE_IMAGES_V, object_name:CZ_PSNODE_REFRULE_IMAGES_V, status:VALID, product: CZ - Configurator , implementation_dba_data: APPS.CZ_PSNODE_REFRULE_IMAGES_V ,
-
View: CZ_MODEL_ALL_RULEFOLDERS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CZ.CZ_MODEL_ALL_RULEFOLDERS_V, object_name:CZ_MODEL_ALL_RULEFOLDERS_V, status:VALID, product: CZ - Configurator , implementation_dba_data: APPS.CZ_MODEL_ALL_RULEFOLDERS_V ,
-
View: CZ_MODEL_ALL_RULEFOLDERS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CZ.CZ_MODEL_ALL_RULEFOLDERS_V, object_name:CZ_MODEL_ALL_RULEFOLDERS_V, status:VALID, product: CZ - Configurator , implementation_dba_data: APPS.CZ_MODEL_ALL_RULEFOLDERS_V ,
-
View: CZ_PSNODE_REFRULE_IMAGES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CZ.CZ_PSNODE_REFRULE_IMAGES_V, object_name:CZ_PSNODE_REFRULE_IMAGES_V, status:VALID, product: CZ - Configurator , implementation_dba_data: APPS.CZ_PSNODE_REFRULE_IMAGES_V ,
-
VIEW: APPS.CZ_MODELRULEFOLDER_IMAGES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CZ.CZ_MODELRULEFOLDER_IMAGES_V, object_name:CZ_MODELRULEFOLDER_IMAGES_V, status:VALID,
-
VIEW: APPS.CZ_PSNODE_REFRULE_IMAGES_V
12.2.2
-
View: WMS_SORT_CRITERIA_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:WMS.WMS_SORT_CRITERIA_V, object_name:WMS_SORT_CRITERIA_V, status:VALID, product: WMS - Warehouse Management , description: WMS sort criteria view , implementation_dba_data: APPS.WMS_SORT_CRITERIA_V ,
-
View: CZ_PSN_TYPED_RULE_REFS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CZ.CZ_PSN_TYPED_RULE_REFS_V, object_name:CZ_PSN_TYPED_RULE_REFS_V, status:VALID, product: CZ - Configurator , implementation_dba_data: APPS.CZ_PSN_TYPED_RULE_REFS_V ,
-
VIEW: APPS.CZ_MODEL_ALL_RULEFOLDERS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CZ.CZ_MODEL_ALL_RULEFOLDERS_V, object_name:CZ_MODEL_ALL_RULEFOLDERS_V, status:VALID,
-
VIEW: APPS.WMS_STRATEGY_MEMBERS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WMS.WMS_STRATEGY_MEMBERS_V, object_name:WMS_STRATEGY_MEMBERS_V, status:VALID,
-
VIEW: APPS.CZ_MODEL_ALL_RULEFOLDERS_V
12.2.2
-
View: CZ_PSN_TYPED_RULE_REFS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CZ.CZ_PSN_TYPED_RULE_REFS_V, object_name:CZ_PSN_TYPED_RULE_REFS_V, status:VALID, product: CZ - Configurator , implementation_dba_data: APPS.CZ_PSN_TYPED_RULE_REFS_V ,
-
View: WMS_STRATEGY_MEMBERS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:WMS.WMS_STRATEGY_MEMBERS_V, object_name:WMS_STRATEGY_MEMBERS_V, status:VALID, product: WMS - Warehouse Management , description: WMS strategy member view , implementation_dba_data: APPS.WMS_STRATEGY_MEMBERS_V ,
-
VIEW: APPS.WMS_STRATEGY_MEMBERS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:WMS.WMS_STRATEGY_MEMBERS_V, object_name:WMS_STRATEGY_MEMBERS_V, status:VALID,
-
VIEW: APPS.CZ_MODELRULEFOLDER_IMAGES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CZ.CZ_MODELRULEFOLDER_IMAGES_V, object_name:CZ_MODELRULEFOLDER_IMAGES_V, status:VALID,
-
View: WMS_SORT_CRITERIA_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WMS.WMS_SORT_CRITERIA_V, object_name:WMS_SORT_CRITERIA_V, status:VALID, product: WMS - Warehouse Management , description: WMS sort criteria view , implementation_dba_data: APPS.WMS_SORT_CRITERIA_V ,
-
VIEW: APPS.CZ_MODEL_ALL_RULEFOLDERS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CZ.CZ_MODEL_ALL_RULEFOLDERS_V, object_name:CZ_MODEL_ALL_RULEFOLDERS_V, status:VALID,
-
VIEW: APPS.CZ_MODEL_ALL_RULEFOLDERS_V
12.1.1
-
VIEW: APPS.WMS_SORT_CRITERIA_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WMS.WMS_SORT_CRITERIA_V, object_name:WMS_SORT_CRITERIA_V, status:VALID,
-
VIEW: APPS.WMS_SORT_CRITERIA_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:WMS.WMS_SORT_CRITERIA_V, object_name:WMS_SORT_CRITERIA_V, status:VALID,
-
VIEW: APPS.CZ_PSNODE_REFRULE_IMAGES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CZ.CZ_PSNODE_REFRULE_IMAGES_V, object_name:CZ_PSNODE_REFRULE_IMAGES_V, status:VALID,
-
View: WMS_STRATEGY_MEMBERS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WMS.WMS_STRATEGY_MEMBERS_V, object_name:WMS_STRATEGY_MEMBERS_V, status:VALID, product: WMS - Warehouse Management , description: WMS strategy member view , implementation_dba_data: APPS.WMS_STRATEGY_MEMBERS_V ,
-
VIEW: APPS.CZ_PSN_TYPED_RULE_REFS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CZ.CZ_PSN_TYPED_RULE_REFS_V, object_name:CZ_PSN_TYPED_RULE_REFS_V, status:VALID,
-
VIEW: APPS.CZ_PSNODE_REFRULE_IMAGES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CZ.CZ_PSNODE_REFRULE_IMAGES_V, object_name:CZ_PSNODE_REFRULE_IMAGES_V, status:VALID,
-
VIEW: APPS.CZ_PSN_TYPED_RULE_REFS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CZ.CZ_PSN_TYPED_RULE_REFS_V, object_name:CZ_PSN_TYPED_RULE_REFS_V, status:VALID,
-
VIEW: APPS.WMS_RESTRICTIONS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WMS.WMS_RESTRICTIONS_V, object_name:WMS_RESTRICTIONS_V, status:VALID,
-
VIEW: APPS.CZ_TYPED_RULES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CZ.CZ_TYPED_RULES_V, object_name:CZ_TYPED_RULES_V, status:VALID,
-
VIEW: APPS.CZ_TYPED_RULES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CZ.CZ_TYPED_RULES_V, object_name:CZ_TYPED_RULES_V, status:VALID,
-
VIEW: APPS.WMS_RESTRICTIONS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:WMS.WMS_RESTRICTIONS_V, object_name:WMS_RESTRICTIONS_V, status:VALID,
-
View: CZ_MODELRULEFOLDER_IMAGES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CZ.CZ_MODELRULEFOLDER_IMAGES_V, object_name:CZ_MODELRULEFOLDER_IMAGES_V, status:VALID, product: CZ - Configurator , implementation_dba_data: APPS.CZ_MODELRULEFOLDER_IMAGES_V ,
-
View: CZ_MODELRULEFOLDER_IMAGES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CZ.CZ_MODELRULEFOLDER_IMAGES_V, object_name:CZ_MODELRULEFOLDER_IMAGES_V, status:VALID, product: CZ - Configurator , implementation_dba_data: APPS.CZ_MODELRULEFOLDER_IMAGES_V ,
-
View: WMS_RESTRICTIONS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:WMS.WMS_RESTRICTIONS_V, object_name:WMS_RESTRICTIONS_V, status:VALID, product: WMS - Warehouse Management , description: WMS restriction view , implementation_dba_data: APPS.WMS_RESTRICTIONS_V ,
-
View: WMS_RESTRICTIONS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WMS.WMS_RESTRICTIONS_V, object_name:WMS_RESTRICTIONS_V, status:VALID, product: WMS - Warehouse Management , description: WMS restriction view , implementation_dba_data: APPS.WMS_RESTRICTIONS_V ,
-
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 ,
-
eTRM - WMS Tables and Views
12.1.1
-
eTRM - WMS Tables and Views
12.2.2