Search Results cz_model_prop_engtyp_compat_v
Overview
The CZ_MODEL_PROP_ENGTYP_COMPAT_V view is a Configurator (CZ) object owned by the APPS schema in Oracle E-Business Suite. It resolves the runtime configuration engine type associated with a given Oracle Configurator development model (project). In Oracle Configurator, an engine type determines which rule-processing engine a model uses — for example, the Java-based engine versus a legacy engine — and the valid combinations of model, property, and engine type are governed by data held in the Configurator lookup and relationship tables.
The view is most frequently referenced in the context of the profile option CZ_DEV_ENABLE_CONFIG_ENGINE and the column CONFIG_ENGINE_TYPE on the development project. When a user searches for the term sysprop_engine_type, they are looking for the mechanism by which EBS determines which engine type a model's system property should report. This view is the documented query artifact that answers that question: it returns one row per development project (or per model identifier), exposing the effective engine type as the column SYSPROP_ENGINE_TYPE. It is therefore used in reporting, diagnostics, and integration logic that must confirm, audit, or default the engine assignment for a Configurator model.
Underlying Base Objects
The view is defined over four documented base objects, referenced through APPS synonyms, plus one PL/SQL package:
- CZ_DEVL_PROJECTS — the development project (model) records. Source of
DEVL_PROJECT_ID(exposed asMODEL_ID) andCONFIG_ENGINE_TYPE. - CZ_LOOKUP_VALUES — referenced twice in the definition, once as the
PROPTYPESalias and once as theENGTYPESalias. Both are restricted toLIST_NAME = 'CZ_ENGINE_TYPES', providing the data value and numeric identifier for engine types. - CZ_TYPE_RELATIONSHIPS — holds the model-property/engine-type compatibility relationships, filtered by
REL_TYPE_CODE = 'ETY', joining subject and object type identifiers. - FND_PROFILE — the profile option package, invoked through
FND_PROFILE.VALUE_WNPS('CZ_DEV_ENABLE_CONFIG_ENGINE')to supply the default engine type when the project identifier resolves to zero.
The joins stitch a project to its compatible engine type entries through the type-relationship table, with the two lookup aliases acting as the static lists of valid engine type values.
Key Columns
- MODEL_ID — aliases
CZ_DEVL_PROJECTS.DEVL_PROJECT_ID. Identifies the Configurator development project/model. A value of 0 is a special case handled by the profile option decode. - SYSPROP_ENGINE_TYPE — aliases
CZ_LOOKUP_VALUES.DATA_VALUEfrom thePROPTYPESalias (restricted toCZ_ENGINE_TYPES). Represents the system property engine type that applies to the model. It is derived so that the effective value is:DECODE(MODEL_ID, 0, FND_PROFILE.VALUE_WNPS('CZ_DEV_ENABLE_CONFIG_ENGINE'), NVL(CONFIG_ENGINE_TYPE, 'L')), meaning model 0 falls back to the profile option, while a real model falls back to 'L' whenCONFIG_ENGINE_TYPEis null.
Common Use Cases and Queries
Typical scenarios include auditing which engine type each model resolves to, diagnosing discrepancies between a model's stored CONFIG_ENGINE_TYPE and the valid engine list, and confirming the global engine setting for the shared (zero) model.
Retrieve the effective engine type for every model:
SELECT model_id, sysprop_engine_type FROM cz_model_prop_engtyp_compat_v ORDER BY model_id;
Look up a specific model's engine type:
SELECT model_id, sysprop_engine_type FROM cz_model_prop_engtyp_compat_v WHERE model_id = :p_model_id;
List only models not using the default engine:
SELECT model_id, sysprop_engine_type FROM cz_model_prop_engtyp_compat_v WHERE sysprop_engine_type != 'L';
Because the effective value depends in part on FND_PROFILE.VALUE_WNPS, results reflect the current session's profile setting for CZ_DEV_ENABLE_CONFIG_ENGINE, making the view suitable for session-context-aware reporting and integration checks.
-
View: CZ_MODEL_PROP_ENGTYP_COMPAT_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CZ.CZ_MODEL_PROP_ENGTYP_COMPAT_V, object_name:CZ_MODEL_PROP_ENGTYP_COMPAT_V, status:VALID, product: CZ - Configurator , implementation_dba_data: APPS.CZ_MODEL_PROP_ENGTYP_COMPAT_V ,
-
View: CZ_MODEL_PROP_ENGTYP_COMPAT_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CZ.CZ_MODEL_PROP_ENGTYP_COMPAT_V, object_name:CZ_MODEL_PROP_ENGTYP_COMPAT_V, status:VALID, product: CZ - Configurator , implementation_dba_data: APPS.CZ_MODEL_PROP_ENGTYP_COMPAT_V ,
-
VIEW: APPS.CZ_CX_EVENT_DEFS_V
12.1.1
-
VIEW: APPS.CZ_CX_EVENT_DEFS_V
12.2.2
-
VIEW: APPS.CZ_GLOBAL_PROPERTIES_V
12.1.1
-
VIEW: APPS.CZ_GLOBAL_PROPERTIES_V
12.2.2
-
VIEW: APPS.CZ_NODE_CAPTION_PROPERTIES_V
12.1.1
-
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
-
SYNONYM: APPS.CZ_LOOKUP_VALUES
12.2.2
owner:APPS, object_type:SYNONYM, object_name:CZ_LOOKUP_VALUES, status:VALID,
-
SYNONYM: APPS.CZ_LOOKUP_VALUES
12.1.1
owner:APPS, object_type:SYNONYM, object_name:CZ_LOOKUP_VALUES, status:VALID,
-
SYNONYM: APPS.CZ_TYPE_RELATIONSHIPS
12.2.2
owner:APPS, object_type:SYNONYM, object_name:CZ_TYPE_RELATIONSHIPS, status:VALID,
-
SYNONYM: APPS.CZ_TYPE_RELATIONSHIPS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:CZ_TYPE_RELATIONSHIPS, status:VALID,
-
View: CZ_GLOBAL_PROPERTIES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CZ.CZ_GLOBAL_PROPERTIES_V, object_name:CZ_GLOBAL_PROPERTIES_V, status:VALID, product: CZ - Configurator , implementation_dba_data: APPS.CZ_GLOBAL_PROPERTIES_V ,
-
View: CZ_GLOBAL_PROPERTIES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CZ.CZ_GLOBAL_PROPERTIES_V, object_name:CZ_GLOBAL_PROPERTIES_V, status:VALID, product: CZ - Configurator , implementation_dba_data: APPS.CZ_GLOBAL_PROPERTIES_V ,
-
VIEW: APPS.CZ_MODEL_PROP_ENGTYP_COMPAT_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CZ.CZ_MODEL_PROP_ENGTYP_COMPAT_V, object_name:CZ_MODEL_PROP_ENGTYP_COMPAT_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: 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_MODEL_PROP_ENGTYP_COMPAT_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CZ.CZ_MODEL_PROP_ENGTYP_COMPAT_V, object_name:CZ_MODEL_PROP_ENGTYP_COMPAT_V, status:VALID,
-
VIEW: APPS.CZ_GLOBAL_PROPERTIES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CZ.CZ_GLOBAL_PROPERTIES_V, object_name:CZ_GLOBAL_PROPERTIES_V, status:VALID,
-
VIEW: APPS.CZ_GLOBAL_PROPERTIES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CZ.CZ_GLOBAL_PROPERTIES_V, object_name:CZ_GLOBAL_PROPERTIES_V, status:VALID,
-
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_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.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_PROPERTIES_FOR_CONTEXT_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CZ.CZ_PROPERTIES_FOR_CONTEXT_V, object_name:CZ_PROPERTIES_FOR_CONTEXT_V, status:VALID,
-
VIEW: APPS.CZ_PROPERTIES_FOR_CONTEXT_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CZ.CZ_PROPERTIES_FOR_CONTEXT_V, object_name:CZ_PROPERTIES_FOR_CONTEXT_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_SIGNATURE_SYSPROPS_V
12.2.2
-
VIEW: APPS.CZ_SIGNATURE_SYSPROPS_V
12.1.1
-
VIEW: APPS.CZ_PROPERTIES_FOR_CONTEXT_V
12.1.1
-
VIEW: APPS.CZ_PROPERTIES_FOR_CONTEXT_V
12.2.2
-
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,
-
SYNONYM: APPS.CZ_DEVL_PROJECTS
12.2.2
owner:APPS, object_type:SYNONYM, object_name:CZ_DEVL_PROJECTS, status:VALID,
-
VIEW: APPS.CZ_CX_EVENT_DEFS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CZ.CZ_CX_EVENT_DEFS_V, object_name:CZ_CX_EVENT_DEFS_V, status:VALID,
-
VIEW: APPS.CZ_CX_EVENT_DEFS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CZ.CZ_CX_EVENT_DEFS_V, object_name:CZ_CX_EVENT_DEFS_V, status:VALID,
-
SYNONYM: APPS.CZ_DEVL_PROJECTS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:CZ_DEVL_PROJECTS, status:VALID,
-
12.2.2 FND Design Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
View: CZ_PROPERTIES_FOR_CONTEXT_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CZ.CZ_PROPERTIES_FOR_CONTEXT_V, object_name:CZ_PROPERTIES_FOR_CONTEXT_V, status:VALID, product: CZ - Configurator , implementation_dba_data: APPS.CZ_PROPERTIES_FOR_CONTEXT_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 ,
-
12.1.1 FND Design Data
12.1.1
-
View: CZ_PROPERTIES_FOR_CONTEXT_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CZ.CZ_PROPERTIES_FOR_CONTEXT_V, object_name:CZ_PROPERTIES_FOR_CONTEXT_V, status:VALID, product: CZ - Configurator , implementation_dba_data: APPS.CZ_PROPERTIES_FOR_CONTEXT_V ,
-
12.2.2 DBA Data
12.2.2
-
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 ,