Search Results rule_type_label
Overview
CZ_TYPED_RULES_V is a Configurator (CZ) module view owned by the APPS schema in Oracle E-Business Suite 12.1.1 and 12.2.2. It presents fully resolved rule definitions by joining the detailed rule expression view to the Configurator lookup view that supplies rule type metadata. The view is the canonical source for reporting on Configurator rules together with their human-readable type classification, exposing both the numeric identifiers used internally and the decoded labels, codes, and descriptions business users recognize.
Its principal value lies in the RULE_TYPE_LABEL column, which translates the internal DETAILED_RULE_TYPE identifier into a descriptive label drawn from CZ_DETAILEDRULETYPES_LKV. This makes the view suitable for ETRM (Enterprise Territory and Rules Management) style reporting, concurrent program extraction, and integration interfaces that must surface rule semantics without hard-coding lookup identifiers. Because it is a view rather than a table, it provides read-only, always-current access to Configurator rule metadata maintained through the Configurator workbench and developer APIs.
Underlying Base Objects
The view is defined over two documented base objects:
- CZ_RULE_EXPRDETLS_V (VIEW) — the driving source, aliased
DETLRULE, supplying the complete detailed rule record including rule identity, expression metadata, folder placement, effectivity, and audit columns. - CZ_DETAILEDRULETYPES_LKV (VIEW) — aliased
RTYV, the lookup view that resolvesDETAILED_RULE_TYPEto its code, label, and description values. It is joined with an outer (+) operator onDETLRULE.DETAILED_RULE_TYPE = RTYV.NUMERIC_ID_VALUE, so rules whose type has no matching lookup row are still returned, with null type label attributes.
Results are ordered by RULE_ID. No DML is permitted against the view; all maintenance occurs on the Configurator base tables beneath the referenced views.
Key Columns
- RULE_ID — primary identifier of the rule.
- RULE_TYPE / DETAILED_RULE_TYPE / RULETYPE_DATATYPE — numeric type indicators used internally by the rule engine.
- RULE_TYPE_CODE / RULE_TYPE_LABEL / RULE_TYPE_DESCRIPTION — decoded lookup values;
RULE_TYPE_LABELis the column most commonly requested in reporting. - RULE_NAME / RULE_DESCRIPTION — user-facing identification and narrative.
- PERSISTENT_RULE_ID / EXPR_ROOT_RULE_TEMPLATE_ID / EXPR_NODE_ID — linkage to persistent rules, template roots, and expression tree nodes.
- RULE_TEXT — the rule expression text.
- COMPONENT_ID / MODEL_REF_EXPL_ID / SIGNATURE_ID — references to the model, component, and signature context in which the rule operates.
- CLASS_NAME / RULE_CLASS / CLASS_SEQ — runtime class binding and evaluation ordering.
- INSTANTIATION_SCOPE / MUTABLE_FLAG / PRESENTATION_FLAG / TEMPLATE_PRIMITIVE_FLAG — behavioral flags governing rule instantiation, editing, and presentation.
- SEEDED_FLAG / INVALID_FLAG / DISABLED_FLAG — status indicators for Oracle-seeded, invalid, or disabled rules.
- EFFECTIVE_FROM / EFFECTIVE_UNTIL / EFFECTIVE_USAGE_MASK / EFFECTIVITY_SET_ID — date and usage effectivity controls.
- RULE_FOLDER_ID / RULE_FOLDER_TYPE / DEVL_PROJECT_ID / SEQ_NBR — organizational placement within the developer workbench.
- CREATION_DATE / LAST_UPDATE_DATE / CREATED_BY / LAST_UPDATED_BY / LAST_UPDATE_LOGIN — standard audit columns.
Common Use Cases and Queries
Typical uses include extracting rule inventories for conversion or migration, validating rule types prior to deployment, and feeding integration interfaces that publish rule metadata.
Listing rules by readable type:
SELECT RULE_ID, RULE_NAME, RULE_TYPE_CODE, RULE_TYPE_LABEL
FROM APPS.CZ_TYPED_RULES_V
ORDER BY RULE_TYPE_LABEL, RULE_ID;
Finding active, non-seeded rules for a specific type:
SELECT RULE_ID, RULE_NAME, RULE_TEXT
FROM APPS.CZ_TYPED_RULES_V
WHERE RULE_TYPE_LABEL = :p_rule_type_label
AND NVL(DISABLED_FLAG,'N') = 'N'
AND NVL(INVALID_FLAG,'N') = 'N';
Auditing rule counts by type:
SELECT RULE_TYPE_LABEL, COUNT(*) RULE_COUNT
FROM APPS.CZ_TYPED_RULES_V
GROUP BY RULE_TYPE_LABEL
ORDER BY RULE_COUNT DESC;
Because the type join is outer, queries filtering on RULE_TYPE_LABEL exclude rules lacking a lookup entry; use RULE_TYPE_LABEL IS NULL to surface those cases.
-
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: APPS.CZ_TYPED_RULES_V
12.1.1
-
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_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_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: 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.2.2
-
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_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_PSNODE_REFRULE_IMAGES_V
12.1.1
-
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_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: 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_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_PSNODE_REFRULE_IMAGES_V
12.2.2
-
VIEW: APPS.CZ_NODETYPE_SYSPROPS_V
12.2.2
-
VIEW: APPS.CZ_NODETYPE_SYSPROPS_V
12.1.1
-
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_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.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_SIGNATURE_SYSPROPS_V
12.2.2
-
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.2.2
-
VIEW: APPS.CZ_MODEL_ALL_RULEFOLDERS_V
12.1.1
-
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: APPS.CZ_SIGNATURE_SYSPROPS_V
12.1.1
-
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: 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.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.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: 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: 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 ,
-
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: 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 ,
-
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 ,