Search Results ieu_uwqm_priorities_tl
Overview
The table IEU_UWQM_PRIORITIES_TL is a translation table within the Oracle E-Business Suite (EBS) modules for the Universal Work Queue (UWQ). Its primary function is to store translated text for priority values used by the UWQ metaphor, enabling the application's user interface to display priority names and descriptions in multiple languages. This table is a critical component for the internationalization (i18n) of the UWQ, allowing a single EBS installation to support a global user base by presenting locale-specific terminology. It operates in conjunction with its base table, IEU_UWQM_PRIORITIES_B, which holds the language-independent data.
Key Information Stored
The table stores the multilingual representations of work queue priorities. Based on standard EBS translation table conventions and the provided metadata, its core columns include:
- PRIORITY_ID: The foreign key that links each translated record to its corresponding master record in the base table IEU_UWQM_PRIORITIES_B.
- LANGUAGE: The ISO code for the language of the translated text (e.g., 'US' for American English). This column, combined with PRIORITY_ID, forms the table's primary key.
- SOURCE_LANG: A column (implied by standard TL table design) indicating the original language of the source data, typically the installation base language.
- PRIORITY_NAME and DESCRIPTION: Columns (implied by function) that hold the actual translated text for the priority's display name and a longer description, respectively.
Common Use Cases and Queries
This table is primarily accessed by the EBS application logic to render the UWQ interface in a user's session language. Common technical use cases include extracting translated priority lists for custom reports or data migrations. A typical query to retrieve all English translations for active priorities would join the translation table with its base table, filtering by the LANGUAGE column.
SELECT tl.priority_name, tl.description, b.*
FROM ieu.ieu_uwqm_priorities_b b,
ieu.ieu_uwqm_priorities_tl tl
WHERE b.priority_id = tl.priority_id
AND tl.language = USERENV('LANG')
AND b.enabled_flag = 'Y';
For database administrators, a common audit query is to check for priorities missing translations in key languages by comparing records in the base table against the translation table.
Related Objects
The table has a direct and essential relationship with its base table, as documented in the provided metadata.
- IEU_UWQM_PRIORITIES_B: This is the primary related table. The foreign key relationship is defined on the column IEU_UWQM_PRIORITIES_TL.PRIORITY_ID, which references IEU_UWQM_PRIORITIES_B. All records in the TL table must correspond to a master record in this base table. The base table stores non-translatable attributes like enabled flags and internal codes.
As a TL table, it is also typically referenced by database views that present a language-specific perspective of the data, often named similarly but without the _TL suffix, which are used by the application's reporting and query frameworks.
-
Table: IEU_UWQM_PRIORITIES_TL
12.1.1
owner:IEU, object_type:TABLE, fnd_design_data:IEU.IEU_UWQM_PRIORITIES_TL, object_name:IEU_UWQM_PRIORITIES_TL, status:VALID, product: IEU - Universal Work Queue , description: UWQ Metaphor priorities translations. , implementation_dba_data: IEU.IEU_UWQM_PRIORITIES_TL ,
-
Table: IEU_UWQM_PRIORITIES_TL
12.2.2
owner:IEU, object_type:TABLE, fnd_design_data:IEU.IEU_UWQM_PRIORITIES_TL, object_name:IEU_UWQM_PRIORITIES_TL, status:VALID, product: IEU - Universal Work Queue , description: UWQ Metaphor priorities translations. , implementation_dba_data: IEU.IEU_UWQM_PRIORITIES_TL ,
-
Table: IEU_UWQM_PRIORITIES_B
12.1.1
owner:IEU, object_type:TABLE, fnd_design_data:IEU.IEU_UWQM_PRIORITIES_B, object_name:IEU_UWQM_PRIORITIES_B, status:VALID, product: IEU - Universal Work Queue , description: UWQ Metaphor priorities. , implementation_dba_data: IEU.IEU_UWQM_PRIORITIES_B ,
-
Table: IEU_UWQM_PRIORITIES_B
12.2.2
owner:IEU, object_type:TABLE, fnd_design_data:IEU.IEU_UWQM_PRIORITIES_B, object_name:IEU_UWQM_PRIORITIES_B, status:VALID, product: IEU - Universal Work Queue , description: UWQ Metaphor priorities. , implementation_dba_data: IEU.IEU_UWQM_PRIORITIES_B ,
-
View: IEU_UWQM_WORKLIST_V
12.1.1
product: IEU - Universal Work Queue , description: View used for UWQ selector SpreadTable. , implementation_dba_data: Not implemented in this database ,
-
View: IEU_UWQM_WORKLIST_V
12.2.2
product: IEU - Universal Work Queue , description: View used for UWQ selector SpreadTable. , implementation_dba_data: Not implemented in this database ,