Search Results ieu_uwqm_work_sources_tl
Overview
The IEU.IEU_UWQM_WORK_SOURCES_TL table is the translation table for UWQ (Universal Work Queue) work sources within the Oracle E-Business Suite IEU (Universal Work Queue) module. It stores language-specific display text—names and descriptions—for work source definitions maintained in the base table IEU_UWQM_WORK_SOURCES_B. Work sources identify the origin of tasks and activities routed through the Universal Work Queue, allowing agents and supervisors to view, filter, and act on assignments originating from CRM, Service, TeleSales, and other integrated modules. Because the table carries the _TL suffix, it follows the standard EBS multilingual pattern: a single translated row per work source per installed language. The table resides in the IEU schema and is marked VALID in the documented ETRM 12.2.2 physical schema, containing 13 columns.
Based on the heuristic Data Vault classification mined from the foreign key structure—which shows only a single outbound reference to FND_SECURITY_GROUPS and no dependent child tables—this object is best modeled as a standalone reference table rather than a hub, link, or satellite. It functions as a language-dependent descriptive attribute store keyed by the work source identifier and language code.
Key Information Stored
The table's identity and descriptive content are concentrated in a small set of columns:
- WS_ID — The work source identifier. This is the foreign key to the base work source definition and forms part of the composite primary key.
- LANGUAGE — The installed Oracle language code (for example,
USfor American English). Together withWS_ID, it completes the primary key. - WS_NAME — The translated, user-facing name of the work source. This is the primary value surfaced on UWQ agent dashboards and selection lists.
- WS_DESCRIPTION — The translated longer description of the work source, used in setup and administrative views.
- SOURCE_LANG — The language from which the row was originally derived, supporting the standard EBS translation-maintenance logic.
- SECURITY_GROUP_ID — The foreign key to
FND_SECURITY_GROUPS, enforcing function and data security partitioning of the translated records. - ZD_EDITION_NAME — The edition identifier used in EBS online patching (adop) to isolate rows by edition, ensuring translated content is consistent across the run edition and patch edition.
- OBJECT_VERSION_NUMBER — The optimistic locking column that prevents lost updates when concurrent sessions modify the same translation row.
- CREATED_BY / CREATION_DATE / LAST_UPDATED_BY / LAST_UPDATE_DATE / LAST_UPDATE_LOGIN — Standard EBS audit columns identifying who created and last modified each translated row, when, and through which login session.
The surrogate primary key is defined by the IEU_UWQM_WORK_SOURCES_TL_PK index on (WS_ID, LANGUAGE). The business-key candidate is the unique index IEU_UWQM_WORK_SOURCES_TL_U1 on (WS_ID, LANGUAGE, ZD_EDITION_NAME), which extends the key with the edition column to support online patching.
Common Use Cases and Queries
Reporting and support scenarios typically join the translation table to the base table to resolve a work source identifier into a user-readable label for a specific language. A typical query pattern resolves a single language while honoring the edition:
- Retrieve translated work source names for the current session language by joining on
WS_IDand filteringLANGUAGE = USERENV('LANG'). - Detect missing translations by comparing rows in the base table against available
LANGUAGEvalues, commonly used during multilingual implementations. - Audit recent translation changes using
LAST_UPDATED_BYandLAST_UPDATE_DATEwithin a date range. - Extract setup data for migrations, filtering on
SECURITY_GROUP_IDto scope output to a specific security group.
Representative SQL:
SELECT tl.ws_id, tl.ws_name, tl.ws_description
FROM ieu.ieu_uwqm_work_sources_tl tl
WHERE tl.language = USERENV('LANG')
AND tl.zd_edition_name = 'SET1';
Related Objects
- IEU_UWQM_WORK_SOURCES_B — The base (non-translated) work source definitions joined on
WS_ID; the translation row supplies the language-specificWS_NAMEandWS_DESCRIPTION. - FND_SECURITY_GROUPS — Referenced by
SECURITY_GROUP_ID; determines the security group under which each translated row is accessible. - FND_LANGUAGES — The source of valid installed language codes matched to the
LANGUAGEcolumn. - IEU_UWQM_WORK_SOURCES_TL_PK — The composite primary key index on
(WS_ID, LANGUAGE)enforcing uniqueness of each translation row. - IEU_UWQM_WORK_SOURCES_TL_U1 — The unique index on
(WS_ID, LANGUAGE, ZD_EDITION_NAME)supporting edition-aware lookups. - FND_APPLICATION / IEU product definitions — Context objects defining the Universal Work Queue application ownership of this table.
-
Table: IEU_UWQM_WORK_SOURCES_TL
12.2.2
owner:IEU, object_type:TABLE, fnd_design_data:IEU.IEU_UWQM_WORK_SOURCES_TL, object_name:IEU_UWQM_WORK_SOURCES_TL, status:VALID, product: IEU - Universal Work Queue , description: UWQ Work Source Translations , implementation_dba_data: IEU.IEU_UWQM_WORK_SOURCES_TL ,
-
Table: IEU_UWQM_WORK_SOURCES_TL
12.1.1
owner:IEU, object_type:TABLE, fnd_design_data:IEU.IEU_UWQM_WORK_SOURCES_TL, object_name:IEU_UWQM_WORK_SOURCES_TL, status:VALID, product: IEU - Universal Work Queue , description: UWQ Work Source Translations , implementation_dba_data: IEU.IEU_UWQM_WORK_SOURCES_TL ,
-
APPS.IEU_UWQM_WORK_SOURCES_PKG SQL Statements
12.1.1
-
APPS.IEU_UWQM_WORK_SOURCES_PKG SQL Statements
12.2.2
-
VIEW: IEU.IEU_UWQM_WORK_SOURCES_TL#
12.2.2
owner:IEU, object_type:VIEW, object_name:IEU_UWQM_WORK_SOURCES_TL#, status:VALID,
-
PACKAGE BODY: APPS.IEU_UWQM_WORK_SOURCES_PKG
12.1.1
-
TRIGGER: APPS.IEU_UWQM_WORK_SOURCES_TL+
12.2.2
-
SYNONYM: APPS.IEU_UWQM_WORK_SOURCES_TL
12.1.1
owner:APPS, object_type:SYNONYM, object_name:IEU_UWQM_WORK_SOURCES_TL, status:VALID,
-
PACKAGE BODY: APPS.IEU_UWQM_WORK_SOURCES_PKG
12.2.2
-
VIEW: IEU.IEU_UWQM_WORK_SOURCES_TL#
12.2.2
-
SYNONYM: APPS.IEU_UWQM_WORK_SOURCES_TL
12.2.2
owner:APPS, object_type:SYNONYM, object_name:IEU_UWQM_WORK_SOURCES_TL, status:VALID,
-
TRIGGER: APPS.IEU_UWQM_WORK_SOURCES_TL+
12.2.2
owner:APPS, object_type:TRIGGER, object_name:IEU_UWQM_WORK_SOURCES_TL+, status:VALID,
-
APPS.IEU_DIAG_AUDIT_TRACK_PVT SQL Statements
12.1.1
-
12.2.2 DBA Data
12.2.2
-
12.2.2 DBA Data
12.2.2
-
APPS.IEU_DIAG_AUDIT_TRACK_PVT SQL Statements
12.2.2
-
FUNCTION: APPS.IEU_UWQM_WORK_SOURCES_TL=
12.2.2
-
TABLE: IEU.IEU_UWQM_WORK_SOURCES_TL
12.2.2
owner:IEU, object_type:TABLE, fnd_design_data:IEU.IEU_UWQM_WORK_SOURCES_TL, object_name:IEU_UWQM_WORK_SOURCES_TL, status:VALID,
-
TABLE: IEU.IEU_UWQM_WORK_SOURCES_TL
12.1.1
owner:IEU, object_type:TABLE, fnd_design_data:IEU.IEU_UWQM_WORK_SOURCES_TL, object_name:IEU_UWQM_WORK_SOURCES_TL, status:VALID,
-
FUNCTION: APPS.IEU_UWQM_WORK_SOURCES_TL=
12.2.2
owner:APPS, object_type:FUNCTION, object_name:IEU_UWQM_WORK_SOURCES_TL=, status:VALID,
-
12.2.2 FND Design Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
PACKAGE BODY: APPS.IEU_UWQM_WORK_SOURCES_PKG
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:IEU_UWQM_WORK_SOURCES_PKG, status:VALID,
-
12.1.1 DBA Data
12.1.1
-
12.2.2 DBA Data
12.2.2
-
12.2.2 DBA Data
12.2.2
-
PACKAGE BODY: APPS.IEU_UWQM_WORK_SOURCES_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IEU_UWQM_WORK_SOURCES_PKG, status:VALID,
-
PACKAGE BODY: APPS.IEU_WORK_SOURCE_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IEU_WORK_SOURCE_PVT, status:VALID,
-
PACKAGE BODY: APPS.IEU_WORK_SOURCE_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:IEU_WORK_SOURCE_PVT, status:VALID,
-
12.2.2 DBA Data
12.2.2
-
12.2.2 DBA Data
12.2.2
-
PACKAGE BODY: APPS.IEU_DIAG_AUDIT_TRACK_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:IEU_DIAG_AUDIT_TRACK_PVT, status:VALID,
-
12.1.1 FND Design Data
12.1.1
-
12.1.1 DBA Data
12.1.1
-
12.2.2 DBA Data
12.2.2
-
PACKAGE BODY: APPS.IEU_DIAG_AUDIT_TRACK_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IEU_DIAG_AUDIT_TRACK_PVT, status:VALID,
-
PACKAGE BODY: APPS.IEU_WR_PUB
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:IEU_WR_PUB, status:VALID,
-
PACKAGE BODY: APPS.IEU_WR_PUB
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IEU_WR_PUB, status:VALID,
-
APPS.IEU_WORK_SOURCE_PVT SQL Statements
12.1.1
-
APPS.IEU_WORK_SOURCE_PVT SQL Statements
12.2.2
-
PACKAGE BODY: APPS.IEU_DIAG_AUDIT_TRACK_PVT
12.1.1
-
PACKAGE BODY: APPS.IEU_DIAG_AUDIT_TRACK_PVT
12.2.2
-
APPS.IEU_WORK_SOURCE_PVT dependencies on IEU_UWQM_WORK_SOURCES_TL
12.2.2
-
APPS.IEU_UWQM_WORK_SOURCES_PKG dependencies on IEU_UWQM_WORK_SOURCES_TL
12.1.1
-
APPS.IEU_DIAG_AUDIT_TRACK_PVT dependencies on IEU_UWQM_WORK_SOURCES_TL
12.2.2
-
APPS.IEU_WR_PUB dependencies on IEU_UWQM_WORK_SOURCES_TL
12.2.2
-
APPS.IEU_WORK_SOURCE_PVT dependencies on IEU_UWQM_WORK_SOURCES_TL
12.1.1
-
APPS.IEU_DIAG_AUDIT_TRACK_PVT dependencies on IEU_UWQM_WORK_SOURCES_TL
12.1.1
-
APPS.IEU_WR_PUB dependencies on IEU_UWQM_WORK_SOURCES_TL
12.1.1
-
APPS.IEU_UWQM_WORK_SOURCES_PKG dependencies on IEU_UWQM_WORK_SOURCES_TL
12.2.2