Search Results persistent_ui_def_id
Overview
APPS.CZ_UI_COLLECT_TMPLS_V is a seeded Oracle EBS view belonging to the application's user interface configuration framework. It presents a consolidated list of UI definitions (CZ_UI_DEFS) joined with the templates (CZ_UI_TEMPLATES) that those definitions either own directly or reference indirectly through the surrounding page, element, action, or container-type metadata. In practice, it answers the question "which templates apply to a given UI definition, and by what relationship?" — supporting reporting, troubleshooting, and integration over the configuration that drives Oracle's configurable UI and collection (CZ) infrastructure. The view is exposed under the APPS schema and is available in both 12.1.1 and 12.2.2. Users searching on template_id will find it here as a first-class column, alongside the definition's identity columns such as ui_def_id, name, devl_project_id, and component_id.
Underlying Base Objects
The view is defined over six ETRM-documented base objects, all referenced through public synonyms resolved to the APPS-visible schema:
- CZ_UI_DEFS — the master UI definition records (aliased UDF). Supplies ui_def_id, name, devl_project_id, component_id, persistent_ui_def_id, master_template_flag, and from_master_template_id.
- CZ_UI_TEMPLATES — the template definitions (aliased UIT). Supplies template_id, template_name, template_type, parent_container_type, and the template's own ui_def_id, exposed here as template_ui_def_id.
- CZ_UI_CONT_TYPE_TEMPLS — associates container types with templates; contributes template references through the container-type path.
- CZ_UI_PAGE_ELEMENTS — page element records that can carry a control template (ctrl_template_id, ctrl_template_ui_def_id).
- CZ_UI_PAGES — page records contributing outer_page_template_id and page_status_template_id references.
- CZ_UI_ACTIONS — action records contributing processing_page_templ_id / proc_page_templ_ui_def_id.
All source tables are filtered with deleted_flag = '0' to exclude soft-deleted configuration rows. The view's logic is an OR between a direct join (UDF.ui_def_id = UIT.ui_def_id) and an EXISTS clause over a UNION ALL of template references gathered from container-type templates, page elements, pages, and actions, matched back to CZ_UI_TEMPLATES on both template_id and the template's ui_def_id.
Key Columns
- UI_DEF_ID, NAME, DEVL_PROJECT_ID, COMPONENT_ID — identity and ownership attributes of the UI definition.
- PERSISTENT_UI_DEF_ID — links a master/reference definition to its persisted definition.
- MASTER_TEMPLATE_FLAG, FROM_MASTER_TEMPLATE_ID — indicate whether the template is a master and which master template it derives from, supporting template inheritance reporting.
- TEMPLATE_ID, TEMPLATE_NAME, TEMPLATE_TYPE — the referenced template's primary key, descriptive name, and category.
- PARENT_CONTAINER_TYPE — the container type governing where the template applies.
- TEMPLATE_UI_DEF_ID — the ui_def_id of the template itself, aliased distinctly from the definition column so the direct-ownership and reference relationships can be distinguished.
Common Use Cases and Queries
Typical uses include auditing template usage, resolving which template drives a given page region, and diagnosing conflicts after a patch or clone. A direct lookup by template:
SELECT ui_def_id, name, template_id, template_name, template_type FROM apps.cz_ui_collect_tmpls_v WHERE template_id = :template_id;SELECT name, template_name, parent_container_type FROM apps.cz_ui_collect_tmpls_v WHERE ui_def_id = :ui_def_id;SELECT DISTINCT template_type FROM apps.cz_ui_collect_tmpls_v WHERE master_template_flag = 'Y';
Because the view unions several reference paths and applies an EXISTS predicate, joins on template_id can return multiple rows per definition; use DISTINCT when a single row per definition is required. For deeper analysis, join the view back to CZ_UI_DEFS or CZ_UI_TEMPLATES on ui_def_id to enrich results with additional configuration attributes.
-
VIEW: APPS.CZ_UI_COLLECT_TMPLS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CZ.CZ_UI_COLLECT_TMPLS_V, object_name:CZ_UI_COLLECT_TMPLS_V, status:VALID,
-
VIEW: CZ.CZ_UI_DEFS#
12.2.2
-
VIEW: APPS.CZ_UI_COLLECT_TMPLS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CZ.CZ_UI_COLLECT_TMPLS_V, object_name:CZ_UI_COLLECT_TMPLS_V, status:VALID,
-
VIEW: APPS.CZ_EXPLODED_UI_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CZ.CZ_EXPLODED_UI_V, object_name:CZ_EXPLODED_UI_V, status:VALID,
-
VIEW: APPS.CZ_EXPLODED_UI_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CZ.CZ_EXPLODED_UI_V, object_name:CZ_EXPLODED_UI_V, status:VALID,
-
VIEW: CZ.CZ_UI_DEFS#
12.2.2
owner:CZ, object_type:VIEW, object_name:CZ_UI_DEFS#, status:VALID,
-
View: CZ_EXPLODED_UI_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CZ.CZ_EXPLODED_UI_V, object_name:CZ_EXPLODED_UI_V, status:VALID, product: CZ - Configurator , implementation_dba_data: APPS.CZ_EXPLODED_UI_V ,
-
View: CZ_EXPLODED_UI_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CZ.CZ_EXPLODED_UI_V, object_name:CZ_EXPLODED_UI_V, status:VALID, product: CZ - Configurator , implementation_dba_data: APPS.CZ_EXPLODED_UI_V ,
-
View: CZ_UI_COLLECT_TMPLS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CZ.CZ_UI_COLLECT_TMPLS_V, object_name:CZ_UI_COLLECT_TMPLS_V, status:VALID, product: CZ - Configurator , implementation_dba_data: APPS.CZ_UI_COLLECT_TMPLS_V ,
-
View: CZ_UI_COLLECT_TMPLS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CZ.CZ_UI_COLLECT_TMPLS_V, object_name:CZ_UI_COLLECT_TMPLS_V, status:VALID, product: CZ - Configurator , implementation_dba_data: APPS.CZ_UI_COLLECT_TMPLS_V ,
-
View: CZ_UIDEF_CONTENTS_V
12.1.1
product: CZ - Configurator , implementation_dba_data: Not implemented in this database ,
-
View: CZ_UIDEF_CONTENTS_V
12.2.2
product: CZ - Configurator , implementation_dba_data: Not implemented in this database ,
-
TABLE: CZ.CZ_UI_DEFS
12.1.1
owner:CZ, object_type:TABLE, fnd_design_data:CZ.CZ_UI_DEFS, object_name:CZ_UI_DEFS, status:VALID,
-
TABLE: CZ.CZ_UI_DEFS
12.2.2
owner:CZ, object_type:TABLE, fnd_design_data:CZ.CZ_UI_DEFS, object_name:CZ_UI_DEFS, status:VALID,
-
APPS.CZ_PS_COPY SQL Statements
12.1.1
-
APPS.CZ_PS_COPY SQL Statements
12.2.2
-
APPS.CZ_DEVELOPER_UTILS_PVT SQL Statements
12.1.1
-
APPS.CZ_DEVELOPER_UTILS_PVT SQL Statements
12.2.2
-
PACKAGE BODY: APPS.CZ_PS_COPY
12.1.1
-
PACKAGE BODY: APPS.CZ_PS_COPY
12.2.2
-
APPS.CZ_UIOA_PVT SQL Statements
12.1.1
-
APPS.CZ_UIOA_PVT SQL Statements
12.2.2
-
PACKAGE BODY: APPS.CZ_DEVELOPER_UTILS_PVT
12.1.1
-
PACKAGE BODY: APPS.CZ_DEVELOPER_UTILS_PVT
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 ,
-
PACKAGE BODY: APPS.CZ_UIOA_PVT
12.1.1
-
PACKAGE BODY: APPS.CZ_UIOA_PVT
12.2.2