Search Results ieu_uwq_media_types_tl
Overview
The table IEU_UWQ_MEDIA_TYPES_TL is a translation table within the Oracle E-Business Suite (EBS) Universal Work Queue (UWQ) module. Its primary role is to store translated descriptions and names for various media types supported by the UWQ framework. This enables the UWQ interface to display media type information, such as "Email," "Fax," or "Web Chat," in the language of the logged-in user, supporting the multi-language capabilities of Oracle Applications. The table is a critical component for the localization and internationalization of the UWQ, ensuring agents can interact with work items in a globally consistent yet linguistically appropriate manner.
Key Information Stored
The table stores language-specific translations for media type records. Its structure is typical of Oracle Applications Translation (TL) tables, containing a key identifier, a language code, and the translated text columns. Based on standard TL table architecture and the provided metadata, the essential columns include:
- MEDIA_TYPE_ID: The foreign key that links to the base table (IEU_UWQ_MEDIA_TYPES_B), uniquely identifying the media type.
- LANGUAGE: The ISO language code (e.g., 'US' for American English, 'KO' for Korean) specifying the language of the translated text.
- SOURCE_LANG: A column typically present in TL tables that indicates the original language in which the record was created.
- USER_MEDIA_TYPE_NAME and DESCRIPTION: The most common columns in TL tables for holding the translated name and descriptive text for the media type, though the exact names are inferred from standard practice as the provided metadata does not list all columns.
Common Use Cases and Queries
This table is primarily accessed by the Oracle Applications runtime to dynamically render the UWQ interface. Common use cases include generating language-specific agent dashboards, building localized reports on work item distribution by media type, and supporting data migration or setup activities for new languages. A typical query to retrieve translated media types for a specific language would join the base and translation tables.
Sample Query:
SELECT b.MEDIA_TYPE_CODE, tl.USER_MEDIA_TYPE_NAME, tl.DESCRIPTION
FROM IEU_UWQ_MEDIA_TYPES_B b,
IEU_UWQ_MEDIA_TYPES_TL tl
WHERE b.MEDIA_TYPE_ID = tl.MEDIA_TYPE_ID
AND tl.LANGUAGE = USERENV('LANG')
AND tl.SOURCE_LANG = 'US';
This query uses the USERENV function to get the current session's language and retrieves the corresponding translations.
Related Objects
The table has a direct and essential relationship with its base table, as documented in the provided foreign key metadata. This relationship is fundamental to the TL table design pattern in Oracle EBS.
- IEU_UWQ_MEDIA_TYPES_B: This is the base table that stores the non-translatable, code-driven information for each media type. The relationship is defined by the foreign key from IEU_UWQ_MEDIA_TYPES_TL.MEDIA_TYPE_ID to IEU_UWQ_MEDIA_TYPES_B.MEDIA_TYPE_ID. All translations in the TL table are for a corresponding record in this base table.
- The table is also implicitly related to other UWQ objects that reference media types, such as work item definitions and agent assignment rules, though these relationships are not documented in the provided excerpt.
-
Table: IEU_UWQ_MEDIA_TYPES_TL
12.1.1
owner:IEU, object_type:TABLE, fnd_design_data:IEU.IEU_UWQ_MEDIA_TYPES_TL, object_name:IEU_UWQ_MEDIA_TYPES_TL, status:VALID, product: IEU - Universal Work Queue , description: UWQ Media Types (translations) , implementation_dba_data: IEU.IEU_UWQ_MEDIA_TYPES_TL ,
-
Table: IEU_UWQ_MEDIA_TYPES_TL
12.2.2
owner:IEU, object_type:TABLE, fnd_design_data:IEU.IEU_UWQ_MEDIA_TYPES_TL, object_name:IEU_UWQ_MEDIA_TYPES_TL, status:VALID, product: IEU - Universal Work Queue , description: UWQ Media Types (translations) , implementation_dba_data: IEU.IEU_UWQ_MEDIA_TYPES_TL ,
-
APPS.IEU_UWQ_MEDIA_TYPES_PVT dependencies on IEU_UWQ_MEDIA_TYPES_TL
12.1.1
-
APPS.IEU_UWQ_MEDIA_TYPES_PVT dependencies on IEU_UWQ_MEDIA_TYPES_TL
12.2.2
-
APPS.IEU_UWQ_MEDIA_TYPES_SEED_PKG dependencies on IEU_UWQ_MEDIA_TYPES_TL
12.1.1
-
APPS.IEU_DIAGNOSTICS_PVT dependencies on IEU_UWQ_MEDIA_TYPES_TL
12.1.1
-
APPS.IEU_DEFAULT_MEDIA_ENUMS_PVT dependencies on IEU_UWQ_MEDIA_TYPES_TL
12.2.2
-
APPS.IEU_DEFAULT_MEDIA_ENUMS_PVT dependencies on IEU_UWQ_MEDIA_TYPES_TL
12.1.1
-
APPS.IEU_DIAGNOSTICS_PVT dependencies on IEU_UWQ_MEDIA_TYPES_TL
12.2.2
-
APPS.IEU_UWQ_MEDIA_TYPES_SEED_PKG dependencies on IEU_UWQ_MEDIA_TYPES_TL
12.2.2
-
APPS.IEU_UWQ_MEDIA_TYPES_SEED_PKG SQL Statements
12.2.2
-
APPS.IEU_UWQ_MEDIA_TYPES_SEED_PKG SQL Statements
12.1.1
-
VIEW: IEU.IEU_UWQ_MEDIA_TYPES_TL#
12.2.2
owner:IEU, object_type:VIEW, object_name:IEU_UWQ_MEDIA_TYPES_TL#, status:VALID,
-
APPS.IEU_UWQ_MEDIA_TYPES_SEED_PKG dependencies on FND_LANGUAGES
12.1.1
-
APPS.IEU_UWQ_MEDIA_TYPES_SEED_PKG dependencies on FND_LANGUAGES
12.2.2
-
PACKAGE BODY: APPS.IEU_UWQ_MEDIA_TYPES_SEED_PKG
12.1.1
-
TRIGGER: APPS.IEU_UWQ_MEDIA_TYPES_TL+
12.2.2
owner:APPS, object_type:TRIGGER, object_name:IEU_UWQ_MEDIA_TYPES_TL+, status:VALID,
-
PACKAGE BODY: APPS.IEU_UWQ_MEDIA_TYPES_SEED_PKG
12.2.2
-
SYNONYM: APPS.IEU_UWQ_MEDIA_TYPES_TL
12.1.1
owner:APPS, object_type:SYNONYM, object_name:IEU_UWQ_MEDIA_TYPES_TL, status:VALID,
-
APPS.IEU_DIAGNOSTICS_PVT dependencies on IEU_UWQ_MEDIA_TYPES_B
12.1.1
-
SYNONYM: APPS.IEU_UWQ_MEDIA_TYPES_TL
12.2.2
owner:APPS, object_type:SYNONYM, object_name:IEU_UWQ_MEDIA_TYPES_TL, status:VALID,
-
APPS.IEU_DIAGNOSTICS_PVT dependencies on IEU_UWQ_MEDIA_TYPES_B
12.2.2
-
VIEW: IEU.IEU_UWQ_MEDIA_TYPES_TL#
12.2.2
-
TRIGGER: APPS.IEU_UWQ_MEDIA_TYPES_TL+
12.2.2
-
APPS.BIX_DM_SESSBYCAMP_PKG dependencies on IEU_SH_ACTIVITIES
12.1.1
-
VIEW: APPS.IEU_UWQ_MEDIA_ACTIONS_VL
12.1.1
-
VIEW: APPS.IEU_UWQ_BLENDED_V
12.1.1
-
VIEW: APPS.IEU_UWQ_MEDIA_V
12.2.2
-
VIEW: APPS.IEU_UWQ_MEDIA_V
12.1.1
-
VIEW: APPS.IEU_UWQ_MEDIA_ACTIONS_VL
12.2.2
-
VIEW: APPS.IEU_UWQ_BLENDED_V
12.2.2
-
APPS.BIX_DM_SESSBYCAMP_PKG dependencies on JTF_RS_RESOURCE_EXTNS
12.1.1
-
VIEW: APPS.IEU_UWQ_WEB_CALLBACK_V
12.2.2
-
APPS.BIX_DM_SESSBYCAMP_PKG dependencies on AMS_CAMPAIGN_SCHEDULES_B
12.1.1
-
VIEW: APPS.IEU_UWQ_INBOUND_TEL_V
12.2.2
-
VIEW: APPS.CCT_BASIC_WEBCALLBACK_V
12.1.1
-
VIEW: APPS.IEU_UWQ_WEB_CALLBACK_V
12.1.1
-
VIEW: APPS.IEU_UWQ_INBOUND_TEL_V
12.1.1
-
VIEW: APPS.CCT_BASIC_WEBCALLBACK_V
12.2.2
-
APPS.BIX_DM_SESSBYCAMP_PKG dependencies on IEU_SH_SESSIONS
12.1.1
-
APPS.IEU_UWQ_MEDIA_TYPES_SEED_PKG dependencies on IEU_UWQ_MEDIA_TYPES_B
12.1.1
-
APPS.IEU_UWQ_MEDIA_TYPES_SEED_PKG dependencies on IEU_UWQ_MEDIA_TYPES_B
12.2.2
-
FUNCTION: APPS.IEU_UWQ_MEDIA_TYPES_TL=
12.2.2
-
APPS.IEU_DEFAULT_MEDIA_ENUMS_PVT dependencies on IEU_UWQ_MEDIA_TYPES_B
12.1.1
-
TABLE: IEU.IEU_UWQ_MEDIA_TYPES_TL
12.1.1
owner:IEU, object_type:TABLE, fnd_design_data:IEU.IEU_UWQ_MEDIA_TYPES_TL, object_name:IEU_UWQ_MEDIA_TYPES_TL, status:VALID,
-
APPS.IEU_DEFAULT_MEDIA_ENUMS_PVT dependencies on IEU_UWQ_MEDIA_TYPES_B
12.2.2
-
FUNCTION: APPS.IEU_UWQ_MEDIA_TYPES_TL=
12.2.2
owner:APPS, object_type:FUNCTION, object_name:IEU_UWQ_MEDIA_TYPES_TL=, status:VALID,
-
TABLE: IEU.IEU_UWQ_MEDIA_TYPES_TL
12.2.2
owner:IEU, object_type:TABLE, fnd_design_data:IEU.IEU_UWQ_MEDIA_TYPES_TL, object_name:IEU_UWQ_MEDIA_TYPES_TL, status:VALID,
-
Table: IEU_UWQ_MEDIA_TYPES_B
12.1.1
owner:IEU, object_type:TABLE, fnd_design_data:IEU.IEU_UWQ_MEDIA_TYPES_B, object_name:IEU_UWQ_MEDIA_TYPES_B, status:VALID, product: IEU - Universal Work Queue , description: UWQ Media Types (base) , implementation_dba_data: IEU.IEU_UWQ_MEDIA_TYPES_B ,
-
Table: IEU_UWQ_MEDIA_TYPES_B
12.2.2
owner:IEU, object_type:TABLE, fnd_design_data:IEU.IEU_UWQ_MEDIA_TYPES_B, object_name:IEU_UWQ_MEDIA_TYPES_B, status:VALID, product: IEU - Universal Work Queue , description: UWQ Media Types (base) , implementation_dba_data: IEU.IEU_UWQ_MEDIA_TYPES_B ,