Search Results cz_ui_cont_type_templs_vv
Overview
In Oracle E-Business Suite 12.1.1 and 12.2.2, the object CZ_UI_CONT_TYPE_TEMPLS_VV is a read-only view owned by the APPS schema within the Oracle Configurator (CZ) product family. Its role is to present a denormalized, human-readable projection of the relationship between configurator UI definitions, UI content types, and the UI templates assigned to them. The suffix _VV conventionally denotes a "value view" — a view intended to join coded identifier columns with their descriptive translations, primarily for reporting, diagnostics, and integration extracts rather than for transactional processing.
The view resolves surrogate keys such as UI_DEF_ID, CONTENT_TYPE, and TEMPLATE_ID into meaningful names and descriptions sourced from the configurator metadata tables. It also decodes the MASTER_TEMPLATE_FLAG value into a descriptive string using a DECODE expression, labelling values as USER INTERFACE, UI MASTER TEMPLATE, or the various FRAGMENT categories (BOM settings, pagination, non-BOM settings). This makes the view particularly useful for administrators auditing how content-type templates are configured across a Configurator implementation.
Underlying Base Objects
The view is defined over four documented base objects, all referenced as SYNONYMs except the trailing nested view:
- CZ_UI_CONT_TYPE_TEMPLS — the driving table (
UTTalias), holding the UI definition, content type, template mapping, and master template flags. - CZ_UI_DEFS — the (
UDFalias) source of the UI definitionNAME. - CZ_SIGNATURES — the (
SIGalias) source of the content typeNAMEandDESCRIPTION. - CZ_UI_TEMPLATES_VV — the (
TPLValias) nested value view supplying template name, description, title string, main message text, layout style information, and the JRAD document reference.
Every join to the secondary objects is an outer join ((+)), each further qualified by a '0' = ...DELETED_FLAG (+) predicate. This design ensures the driving row from CZ_UI_CONT_TYPE_TEMPLS is never lost even where the related definition, signature, or template has been soft-deleted or is absent.
Key Columns
UI_DEF_ID/UI_DEF_NAME— the owning UI definition identifier and its resolved name.MASTER_TEMPLATE_FLAG/TEMPLATE_FLAG_INFO— the raw flag and its decoded descriptive label, including an explicit 'NULL VALUE ERROR' and 'UNRECOGNIZED MASTER FLAG' branch for data quality checks.CONTENT_TYPE/CONTENT_TYPE_NAME/CONTENT_TYPE_DESCR— the content type key and its resolved signature name and description.TEMPLATE_ID/TEMPLATE_UI_DEF_ID— template linkage keys.TEMPLATE_NAME,TEMPLATE_DESC,TITLE_STRING,MAIN_MESSAGE_TEXT,LAYOUT_UI_STYLE_INFO,JRAD_DOC— descriptive attributes drawn from the template value view.SEEDED_FLAG/DELETED_FLAG— Oracle-supplied versus customer-created, and soft-delete status indicators.
Common Use Cases and Queries
Typical scenarios include verifying which templates are attached to each content type, identifying seeded versus custom templates, and diagnosing missing or soft-deleted template references. A representative query lists all active template assignments with resolved names:
SELECT UI_DEF_NAME, CONTENT_TYPE_NAME, TEMPLATE_NAME, TEMPLATE_FLAG_INFO FROM APPS.CZ_UI_CONT_TYPE_TEMPLS_VV WHERE DELETED_FLAG = '0';- Filter to master templates only: add
AND MASTER_TEMPLATE_FLAG = '1'. - Detect orphaned mappings: add
AND TEMPLATE_NAME IS NULLto reveal assignments whose template is missing or deleted.
Because it encapsulates multiple outer joins and decode logic, the view is the preferred access point for reports and interfaces rather than querying the base configurator tables directly.
-
View: CZ_UI_CONT_TYPE_TEMPLS_VV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CZ.CZ_UI_CONT_TYPE_TEMPLS_VV, object_name:CZ_UI_CONT_TYPE_TEMPLS_VV, status:VALID, product: CZ - Configurator , implementation_dba_data: APPS.CZ_UI_CONT_TYPE_TEMPLS_VV ,
-
View: CZ_UI_CONT_TYPE_TEMPLS_VV
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CZ.CZ_UI_CONT_TYPE_TEMPLS_VV, object_name:CZ_UI_CONT_TYPE_TEMPLS_VV, status:VALID, product: CZ - Configurator , implementation_dba_data: APPS.CZ_UI_CONT_TYPE_TEMPLS_VV ,
-
SYNONYM: APPS.CZ_UI_CONT_TYPE_TEMPLS
12.2.2
owner:APPS, object_type:SYNONYM, object_name:CZ_UI_CONT_TYPE_TEMPLS, status:VALID,
-
SYNONYM: APPS.CZ_UI_CONT_TYPE_TEMPLS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:CZ_UI_CONT_TYPE_TEMPLS, status:VALID,
-
SYNONYM: APPS.CZ_SIGNATURES
12.2.2
owner:APPS, object_type:SYNONYM, object_name:CZ_SIGNATURES, status:VALID,
-
SYNONYM: APPS.CZ_SIGNATURES
12.1.1
owner:APPS, object_type:SYNONYM, object_name:CZ_SIGNATURES, status:VALID,
-
VIEW: APPS.CZ_UI_TEMPLATES_VV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CZ.CZ_UI_TEMPLATES_VV, object_name:CZ_UI_TEMPLATES_VV, status:VALID,
-
SYNONYM: APPS.CZ_UI_DEFS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:CZ_UI_DEFS, status:VALID,
-
SYNONYM: APPS.CZ_UI_DEFS
12.2.2
owner:APPS, object_type:SYNONYM, object_name:CZ_UI_DEFS, status:VALID,
-
VIEW: APPS.CZ_UI_CONT_TYPE_TEMPLS_VV
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CZ.CZ_UI_CONT_TYPE_TEMPLS_VV, object_name:CZ_UI_CONT_TYPE_TEMPLS_VV, status:VALID,
-
VIEW: APPS.CZ_UI_CONT_TYPE_TEMPLS_VV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CZ.CZ_UI_CONT_TYPE_TEMPLS_VV, object_name:CZ_UI_CONT_TYPE_TEMPLS_VV, status:VALID,
-
VIEW: APPS.CZ_UI_TEMPLATES_VV
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CZ.CZ_UI_TEMPLATES_VV, object_name:CZ_UI_TEMPLATES_VV, status:VALID,
-
12.1.1 FND Design Data
12.1.1
-
12.2.2 FND Design Data
12.2.2
-
12.2.2 DBA Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
View: CZ_UIDEF_CONTENTS_V
12.2.2
product: CZ - Configurator , implementation_dba_data: Not implemented in this database ,
-
View: CZ_UIDEF_CONTENTS_V
12.1.1
product: CZ - Configurator , implementation_dba_data: Not implemented in this database ,
-
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 ,
-
12.2.2 DBA Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
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 ,