Search Results ibe_dsp_context_tl_pk
Overview
The IBE_DSP_CONTEXT_TL table is a core translation table within the Oracle E-Business Suite iStore (IBE) module. It functions as the language-specific repository for descriptive data associated with display contexts, which are foundational objects for managing the presentation and layout of iStore pages. Its primary role is to support the multi-language capabilities of the application by storing translated versions of context names and descriptions. The table operates in a master-detail relationship with its base table, IBE_DSP_CONTEXT_B, which holds the language-independent structural and control attributes. This design is a standard Oracle Applications pattern, enabling a single context definition to be presented in multiple languages based on the user's session language.
Key Information Stored
The table stores the translated textual attributes for a display context. The key columns, as defined by its primary key, are CONTEXT_ID and LANGUAGE. The CONTEXT_ID is a foreign key that uniquely links each row to its corresponding master record in IBE_DSP_CONTEXT_B. The LANGUAGE column holds the standard Oracle language code (e.g., 'US' for American English, 'D' for German) identifying the translation. While the specific descriptive column names are not detailed in the provided metadata, typical translation (TL) tables in this schema include columns such as CONTEXT_NAME and DESCRIPTION to hold the user-facing translated text. Additional standard columns like CREATED_BY, CREATION_DATE, LAST_UPDATED_BY, LAST_UPDATE_DATE, and LAST_UPDATE_LOGIN are also invariably present for auditing purposes.
Common Use Cases and Queries
This table is primarily accessed by the iStore application runtime to render interface elements in the correct language. Common functional and reporting use cases include auditing translation completeness, extracting language-specific labels for integrations, and troubleshooting display issues. A typical query retrieves the translated context information for a specific language or all languages.
- Retrieve all translations for a specific context:
SELECT LANGUAGE, CONTEXT_NAME, DESCRIPTION FROM IBE_DSP_CONTEXT_TL WHERE CONTEXT_ID = :1 ORDER BY LANGUAGE; - Find contexts missing a translation in a target language:
SELECT B.CONTEXT_CODE FROM IBE_DSP_CONTEXT_B B WHERE NOT EXISTS (SELECT 1 FROM IBE_DSP_CONTEXT_TL T WHERE T.CONTEXT_ID = B.CONTEXT_ID AND T.LANGUAGE = 'D'); - Join with base table for a comprehensive view:
SELECT B.CONTEXT_CODE, T.LANGUAGE, T.CONTEXT_NAME FROM IBE_DSP_CONTEXT_B B, IBE_DSP_CONTEXT_TL T WHERE B.CONTEXT_ID = T.CONTEXT_ID AND T.LANGUAGE = USERENV('LANG');
Related Objects
The IBE_DSP_CONTEXT_TL table has a direct and singular dependency on the iStore display context master table. Its relationships are formally documented as follows:
- Primary Key: IBE_DSP_CONTEXT_TL_PK on columns (CONTEXT_ID, LANGUAGE). This enforces uniqueness of a translation per context and language.
- Foreign Key (References): The table contains a foreign key constraint where its CONTEXT_ID column references the IBE_DSP_CONTEXT_B table. This ensures every translation record must correspond to a valid master context definition. The join condition for queries is
IBE_DSP_CONTEXT_TL.CONTEXT_ID = IBE_DSP_CONTEXT_B.CONTEXT_ID.
As a translation table, it is typically accessed indirectly via the Oracle Applications' standard multilingual views, which automatically filter records based on the session language. The base table IBE_DSP_CONTEXT_B is the central object for any functional setup or configuration involving display contexts.
-
Table: IBE_DSP_CONTEXT_TL
12.1.1
owner:IBE, object_type:TABLE, fnd_design_data:IBE.IBE_DSP_CONTEXT_TL, object_name:IBE_DSP_CONTEXT_TL, status:VALID, product: IBE - iStore , description: Translations for IBE_DSP_CONTEXT_B. , implementation_dba_data: IBE.IBE_DSP_CONTEXT_TL ,
-
Table: IBE_DSP_CONTEXT_TL
12.2.2
owner:IBE, object_type:TABLE, fnd_design_data:IBE.IBE_DSP_CONTEXT_TL, object_name:IBE_DSP_CONTEXT_TL, status:VALID, product: IBE - iStore , description: Translations for IBE_DSP_CONTEXT_B. , implementation_dba_data: IBE.IBE_DSP_CONTEXT_TL ,
-
eTRM - IBE Tables and Views
12.2.2
description: This table stores information about supported Work Flow notifications in iStore. ,
-
eTRM - IBE Tables and Views
12.1.1
description: This table stores information about supported Work Flow notifications in iStore. ,
-
eTRM - IBE Tables and Views
12.1.1
description: This table stores information about supported Work Flow notifications in iStore. ,
-
eTRM - IBE Tables and Views
12.2.2
description: This table stores information about supported Work Flow notifications in iStore. ,