Results for “participant_role_list”

16 results




AI-generated from documented ETRM metadata — verify critical details on the linked pages.

Overview

CZ_PSNODE_REFRULE_IMAGES_V is a reporting view owned by the APPS schema within the Oracle EBS Configurator product (CZ). It is defined over two other Configurator views — CZ_PSNODE_RULE_REFS_V and CZ_RULETYPE_IMAGES_V — and is designed to expose the presentation metadata (icons, images, labels, and alternative text) associated with rule types and rule references in a Configurator model structure. In effect, the view joins the rule-reference explosion of a model's product structure nodes with the image registry that describes how each rule type should be rendered in a Configurator runtime or modeling UI. It is a read-only, VALID object in the 12.1.1 / 12.2.2 code lines and carries no data of its own beyond what the contributing views supply.

Underlying Base Objects

ETRM metadata lists the following referenced base objects:

The primary join is an outer join from P2RUL to RIMG, matching REFERENCED_USAGE_FLAG to REFERENCED_RULE_FLAG and ENTITY_CODE to DETAILED_RULE_TYPE. This means each rule reference row is preserved even when no image definition exists. A UNION clause is present in the view text, indicating a second branch (typically the root or presentation rule set) that feeds the same column projection.

Key Columns

Common Use Cases and Queries

The view is typically used when generating Configurator model documentation or UI metadata that must pair each rule with its icon and label. A common pattern is to enumerate all rule references for a given model and resolve their images:

SELECT RULE_ID, RULE_NAME, RULE_TYPE, RULETYPE_DATATYPE, RULE_TYPE_LABEL, IMAGE_FILE, ALT_TEXT FROM CZ_PSNODE_REFRULE_IMAGES_V WHERE MODEL_ID = :model_id AND NVL(DISABLED_FLAG,'N') = 'N' AND EFFECTIVITY_FILTER = 'N';

Because the image side is an outer join, reporting must apply NVL or LEFT-JOIN semantics when a rule type has no registered icon. A second typical query lists missing images:

SELECT MODEL_ID, PS_NODE_ID, RULE_NAME, DETAILED_RULE_TYPE FROM CZ_PSNODE_REFRULE_IMAGES_V WHERE IMAGE_FILE IS NULL;

Querying the underlying base view CZ_PSNODE_RULE_REFS_V takes the view's dependency on the effectivity model into account; therefore filters on EFFECTIVE_FROM/UNTIL and EFFECTIVITY_SET_ID should be applied when retrieving currently effective rules. The absence of any column relating to human figures or artistic drawings means the view is unrelated to the search term that produced this lookup; it deals strictly with graphical rule-type images used by Oracle Configurator.