Search Results ieu_wp_ui_components_tl
Overview
IEU_WP_UI_COMPONENTS_TL is the translation (TL) table for UWQ UI Components within the IEU — Universal Work Queue — module of Oracle E-Business Suite. It stores the language-specific, displayable text for each UI component defined in the Universal Work Queue framework, which is the infrastructure that powers agent-facing work queues such as those used by TeleService, iSupport, and other interaction-center applications. In Oracle EBS 12.1.1 and 12.2.2, this table follows the standard multi-language design pattern: language-independent attributes (identification, ownership, and operational settings) reside in the base table IEU_WP_UI_COMPONENTS_B, while translatable attributes — labels and descriptions — are held here, keyed by both component identifier and language.
Based on the foreign-key structure documented in the ETRM metadata, the heuristic Data Vault classification for this object is satellite-leaning. In Data Vault modeling terms, a satellite captures descriptive, time-variant attributes attached to a hub or link; the strong dependency of this table on IEU_WP_UI_COMPONENTS_B via UI_COMP_ID, combined with its role of holding descriptive text, is consistent with that pattern. This classification is a modeling suggestion only and should not be treated as a formal designation.
Key Information Stored
The table contains 13 documented columns. The most significant are:
- UI_COMP_ID — Surrogate identifier of the UI component; foreign key to IEU_WP_UI_COMPONENTS_B. Forms part of the composite primary key.
- LANGUAGE — The language code for the translated row. Forms the second component of the composite primary key.
- UI_COMP_LABEL — The translated, user-visible label displayed for the UI component in the work queue interface.
- UI_COMP_DESC — The translated description text associated with the UI component.
- SOURCE_LANG — Indicates the source language of the row, used by the translation (MLS) infrastructure.
- OBJECT_VERSION_NUMBER — Optimistic locking column used by the Oracle Application Framework (OAF) to detect concurrent updates.
- CREATED_BY, CREATION_DATE, LAST_UPDATED_BY, LAST_UPDATE_DATE, LAST_UPDATE_LOGIN — Standard Oracle EBS audit "WHO" columns recording row creation and modification history.
- SECURITY_GROUP_ID — References FND_SECURITY_GROUPS, supporting multi-organization security access control.
- ZD_EDITION_NAME — Editioning support column present in the 12.2.2 documented physical schema, used by the EBR (Edition-Based Redefinition) online patching architecture.
The composite primary key is IEU_WP_UI_COMPONENTS_TL_PK (UI_COMP_ID, LANGUAGE). A unique business-key candidate is documented as IEU_WP_UI_COMPONENTS_TL_U1 (UI_COMP_ID, LANGUAGE, ZD_EDITION_NAME), which adds the edition column to enforce uniqueness across editioning scope. The 12.2.2 physical schema documents 13 columns under the IEU schema owner.
Common Use Cases and Queries
Typical use cases include looking up the display label of a work queue UI component for a given language, validating that translations exist for all required languages, and auditing translation coverage before enabling a locale.
To retrieve translated component text with the base component definition:
SELECT b.ui_comp_id, tl.language, tl.ui_comp_label, tl.ui_comp_desc FROM ieu.ieu_wp_ui_components_b b, ieu.ieu_wp_ui_components_tl tl WHERE b.ui_comp_id = tl.ui_comp_id AND tl.language = USERENV('LANG');
To find components missing a translation for a specific language:
SELECT b.ui_comp_id FROM ieu.ieu_wp_ui_components_b b WHERE NOT EXISTS (SELECT 1 FROM ieu.ieu_wp_ui_components_tl tl WHERE tl.ui_comp_id = b.ui_comp_id AND tl.language = 'US');
Reporting use cases include translation completeness reports, label-change audits (using LAST_UPDATE_DATE), and analysis of which components are exposed to which security groups via SECURITY_GROUP_ID.
Related Objects
- IEU_WP_UI_COMPONENTS_B — The base table holding language-independent component attributes; joined on UI_COMP_ID. This is the primary FK relationship.
- FND_SECURITY_GROUPS — Referenced via SECURITY_GROUP_ID for security group access control.
- IEU_WP_UI_COMPONENTS_TL_PK — The composite primary key constraint (UI_COMP_ID, LANGUAGE) enforcing row uniqueness.
- IEU_WP_UI_COMPONENTS_TL_U1 — Unique index providing the business-key candidate (UI_COMP_ID, LANGUAGE, ZD_EDITION_NAME).
- FND_LANGUAGES / FND_LANGUAGE — Supplies the valid LANGUAGE codes for the MLS translation rows.
- IEU_WP_COMPONENT_ATTRIBUTES and related UWQ configuration tables — Configure work queue component behavior and typically resolve to the same component identifiers used here.
-
Table: IEU_WP_UI_COMPONENTS_TL
12.1.1
owner:IEU, object_type:TABLE, fnd_design_data:IEU.IEU_WP_UI_COMPONENTS_TL, object_name:IEU_WP_UI_COMPONENTS_TL, status:VALID, product: IEU - Universal Work Queue , description: UWQ UI Components - TL , implementation_dba_data: IEU.IEU_WP_UI_COMPONENTS_TL ,
-
Table: IEU_WP_UI_COMPONENTS_TL
12.2.2
owner:IEU, object_type:TABLE, fnd_design_data:IEU.IEU_WP_UI_COMPONENTS_TL, object_name:IEU_WP_UI_COMPONENTS_TL, status:VALID, product: IEU - Universal Work Queue , description: UWQ UI Components - TL , implementation_dba_data: IEU.IEU_WP_UI_COMPONENTS_TL ,
-
APPS.IEU_WP_UI_COMPONENTS_PKG SQL Statements
12.2.2
-
APPS.IEU_WP_UI_COMPONENTS_PKG SQL Statements
12.1.1
-
VIEW: IEU.IEU_WP_UI_COMPONENTS_TL#
12.2.2
owner:IEU, object_type:VIEW, object_name:IEU_WP_UI_COMPONENTS_TL#, status:VALID,
-
PACKAGE BODY: APPS.IEU_WP_UI_COMPONENTS_PKG
12.2.2
-
TRIGGER: APPS.IEU_WP_UI_COMPONENTS_TL+
12.2.2
owner:APPS, object_type:TRIGGER, object_name:IEU_WP_UI_COMPONENTS_TL+, status:VALID,
-
SYNONYM: APPS.IEU_WP_UI_COMPONENTS_TL
12.2.2
owner:APPS, object_type:SYNONYM, object_name:IEU_WP_UI_COMPONENTS_TL, status:VALID,
-
VIEW: APPS.IEU_WP_UI_COMPONENTS_VL
12.2.2
-
PACKAGE BODY: APPS.IEU_WP_UI_COMPONENTS_PKG
12.1.1
-
TRIGGER: APPS.IEU_WP_UI_COMPONENTS_TL+
12.2.2
-
SYNONYM: APPS.IEU_WP_UI_COMPONENTS_TL
12.1.1
owner:APPS, object_type:SYNONYM, object_name:IEU_WP_UI_COMPONENTS_TL, status:VALID,
-
VIEW: APPS.IEU_WP_UI_COMPONENTS_VL
12.1.1
-
VIEW: IEU.IEU_WP_UI_COMPONENTS_TL#
12.2.2
-
FUNCTION: APPS.IEU_WP_UI_COMPONENTS_TL=
12.2.2
-
Table: IEU_WP_UI_COMPONENTS_B
12.2.2
owner:IEU, object_type:TABLE, fnd_design_data:IEU.IEU_WP_UI_COMPONENTS_B, object_name:IEU_WP_UI_COMPONENTS_B, status:VALID, product: IEU - Universal Work Queue , description: UWQ UI Components - B , implementation_dba_data: IEU.IEU_WP_UI_COMPONENTS_B ,
-
TABLE: IEU.IEU_WP_UI_COMPONENTS_TL
12.2.2
owner:IEU, object_type:TABLE, fnd_design_data:IEU.IEU_WP_UI_COMPONENTS_TL, object_name:IEU_WP_UI_COMPONENTS_TL, status:VALID,
-
TABLE: IEU.IEU_WP_UI_COMPONENTS_TL
12.1.1
owner:IEU, object_type:TABLE, fnd_design_data:IEU.IEU_WP_UI_COMPONENTS_TL, object_name:IEU_WP_UI_COMPONENTS_TL, status:VALID,
-
View: IEU_WP_UI_COMPONENTS_VL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:IEU.IEU_WP_UI_COMPONENTS_VL, object_name:IEU_WP_UI_COMPONENTS_VL, status:VALID, product: IEU - Universal Work Queue , description: View of UWQ UI Components , implementation_dba_data: APPS.IEU_WP_UI_COMPONENTS_VL ,
-
12.1.1 DBA Data
12.1.1
-
Table: IEU_WP_UI_COMPONENTS_B
12.1.1
owner:IEU, object_type:TABLE, fnd_design_data:IEU.IEU_WP_UI_COMPONENTS_B, object_name:IEU_WP_UI_COMPONENTS_B, status:VALID, product: IEU - Universal Work Queue , description: UWQ UI Components - B , implementation_dba_data: IEU.IEU_WP_UI_COMPONENTS_B ,
-
12.1.1 DBA Data
12.1.1
-
12.2.2 DBA Data
12.2.2
-
12.2.2 DBA Data
12.2.2
-
View: IEU_WP_UI_COMPONENTS_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IEU.IEU_WP_UI_COMPONENTS_VL, object_name:IEU_WP_UI_COMPONENTS_VL, status:VALID, product: IEU - Universal Work Queue , description: View of UWQ UI Components , implementation_dba_data: APPS.IEU_WP_UI_COMPONENTS_VL ,
-
FUNCTION: APPS.IEU_WP_UI_COMPONENTS_TL=
12.2.2
owner:APPS, object_type:FUNCTION, object_name:IEU_WP_UI_COMPONENTS_TL=, status:VALID,
-
12.2.2 DBA Data
12.2.2
-
12.2.2 DBA Data
12.2.2
-
PACKAGE BODY: APPS.IEU_WP_UI_COMPONENTS_PKG
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:IEU_WP_UI_COMPONENTS_PKG, status:VALID,
-
12.2.2 DBA Data
12.2.2
-
12.2.2 DBA Data
12.2.2
-
PACKAGE BODY: APPS.IEU_WP_UI_COMPONENTS_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IEU_WP_UI_COMPONENTS_PKG, status:VALID,
-
12.1.1 DBA Data
12.1.1
-
12.2.2 DBA Data
12.2.2
-
12.2.2 FND Design Data
12.2.2
-
12.1.1 FND Design Data
12.1.1
-
VIEW: APPS.IEU_WP_UI_COMPONENTS_VL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:IEU.IEU_WP_UI_COMPONENTS_VL, object_name:IEU_WP_UI_COMPONENTS_VL, status:VALID,
-
VIEW: APPS.IEU_WP_UI_COMPONENTS_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IEU.IEU_WP_UI_COMPONENTS_VL, object_name:IEU_WP_UI_COMPONENTS_VL, status:VALID,
-
APPS.IEU_WP_UI_COMPONENTS_PKG dependencies on IEU_WP_UI_COMPONENTS_TL
12.2.2
-
eTRM - IEU Tables and Views
12.2.2
description: UI Component-Data Types mapping ,
-
eTRM - IEU Tables and Views
12.1.1
description: UI Component-Data Types mapping ,
-
APPS.IEU_WP_UI_COMPONENTS_PKG dependencies on IEU_WP_UI_COMPONENTS_TL
12.1.1
-
APPS.IEU_WP_UI_COMPONENTS_PKG dependencies on FND_LANGUAGES
12.1.1
-
APPS.IEU_WP_UI_COMPONENTS_PKG dependencies on FND_LANGUAGES
12.2.2
-
12.2.2 DBA Data
12.2.2
-
SYNONYM: PUBLIC.DATABASE_PROPERTIES
12.2.2
owner:PUBLIC, object_type:SYNONYM, object_name:DATABASE_PROPERTIES, status:VALID,
-
APPS.IEU_WP_UI_COMPONENTS_PKG dependencies on IEU_WP_UI_COMPONENTS_B
12.2.2
-
APPS.IEU_WP_UI_COMPONENTS_PKG dependencies on IEU_WP_UI_COMPONENTS_B
12.1.1
-
eTRM - IEU Tables and Views
12.1.1
description: UI Component-Data Types mapping ,
-
12.2.2 DBA Data
12.2.2