Search Results ibe_dsp_sections_tl
Overview
The IBE_DSP_SECTIONS_TL table is a core data object within the Oracle E-Business Suite (EBS) iStore (IBE) module, specifically versions 12.1.1 and 12.2.2. As a translatable (TL) table, its primary function is to store user-facing, language-specific text for sections defined within the iStore application. Sections are logical groupings of content or UI elements used in constructing the storefront's user interface. This table enables the multi-language support (MLS) capability of Oracle EBS by separating the static, non-translatable data (stored in its base table, IBE_DSP_SECTIONS_B) from the dynamic, translatable descriptive data. Its role is critical for delivering a localized customer experience in global e-commerce deployments.
Key Information Stored
The table holds the textual attributes of a section that require translation. Its structure is defined by a composite primary key consisting of SECTION_ID and LANGUAGE. The SECTION_ID is a foreign key that links each row to its corresponding master record in the IBE_DSP_SECTIONS_B table. The LANGUAGE column stores the language code (e.g., 'US', 'FR') for the translation. The most significant data column in this table is typically SECTION_NAME, which contains the display name of the section in the specified language. Other common TL columns may include DESCRIPTION or other user-visible text attributes associated with the section entity, though the specific column list is confirmed by the base table's TL attributes.
Common Use Cases and Queries
A primary use case is retrieving the appropriate section display text for a user session based on their language preference. This is fundamental for rendering any iStore page that utilizes sections. Development and support tasks often involve querying this table to verify or update translated content. A common reporting need is to identify sections missing translations for a target language.
- Retrieve Section Name for a Specific Language: SELECT section_id, section_name FROM ibe_dsp_sections_tl WHERE section_id = 100 AND language = 'US';
- Find All Translations for a Section: SELECT language, section_name FROM ibe_dsp_sections_tl WHERE section_id = 200 ORDER BY language;
- Join with Base Table for a Complete View: SELECT b.section_id, tl.language, tl.section_name, b.
FROM ibe_dsp_sections_b b, ibe_dsp_sections_tl tl WHERE b.section_id = tl.section_id AND tl.language = USERENV('LANG');
Related Objects
The IBE_DSP_SECTIONS_TL table has a direct and essential relationship with its non-translatable base table, as documented in the provided metadata.
- IBE_DSP_SECTIONS_B: This is the primary related table. The foreign key relationship is IBE_DSP_SECTIONS_TL.SECTION_ID references IBE_DSP_SECTIONS_B. All records in the TL table must have a corresponding master record in this base table, which holds the non-translatable attributes and the primary key for the section entity.
Other related objects would include any iStore application programming interfaces (APIs) or forms that manage section setup and content, which would internally handle the reading and writing of data to both the _B and _TL tables to maintain data integrity.
-
Table: IBE_DSP_SECTIONS_TL
12.2.2
owner:IBE, object_type:TABLE, fnd_design_data:IBE.IBE_DSP_SECTIONS_TL, object_name:IBE_DSP_SECTIONS_TL, status:VALID, product: IBE - iStore , description: This table stores the translatable information about the sections. , implementation_dba_data: IBE.IBE_DSP_SECTIONS_TL ,
-
Table: IBE_DSP_SECTIONS_TL
12.1.1
owner:IBE, object_type:TABLE, fnd_design_data:IBE.IBE_DSP_SECTIONS_TL, object_name:IBE_DSP_SECTIONS_TL, status:VALID, product: IBE - iStore , description: This table stores the translatable information about the sections. , implementation_dba_data: IBE.IBE_DSP_SECTIONS_TL ,
-
APPS.IBE_DSP_HIERARCHY_SETUP_PVT dependencies on IBE_DSP_SECTIONS_TL
12.1.1
-
APPS.IBE_REPORTING_PVT dependencies on IBE_DSP_SECTIONS_TL
12.1.1
-
APPS.IBW_OE_PVT dependencies on IBE_DSP_SECTIONS_TL
12.2.2
-
APPS.IBW_OE_PVT dependencies on IBE_DSP_SECTIONS_TL
12.1.1
-
APPS.IBE_DSP_SECTION_GRP dependencies on IBE_DSP_SECTIONS_TL
12.1.1
-
APPS.IBE_REPORTING_PVT dependencies on IBE_DSP_SECTIONS_TL
12.2.2
-
APPS.IBE_DSP_SECTION_GRP dependencies on IBE_DSP_SECTIONS_TL
12.2.2
-
APPS.IBE_DSP_HIERARCHY_SETUP_PVT dependencies on IBE_DSP_SECTIONS_TL
12.2.2
-
VIEW: IBE.IBE_DSP_SECTIONS_TL#
12.2.2
owner:IBE, object_type:VIEW, object_name:IBE_DSP_SECTIONS_TL#, status:VALID,
-
SYNONYM: APPS.IBE_DSP_SECTIONS_TL
12.2.2
owner:APPS, object_type:SYNONYM, object_name:IBE_DSP_SECTIONS_TL, status:VALID,
-
APPS.IBE_DSP_SECTION_GRP dependencies on FND_LOAD_UTIL
12.1.1
-
APPS.IBE_DSP_SECTION_GRP dependencies on FND_LANGUAGES
12.2.2
-
APPS.IBE_DSP_SECTION_GRP dependencies on FND_LANGUAGES
12.1.1
-
VIEW: APPS.IBE_DSP_SECTIONS_VL
12.1.1
-
SYNONYM: APPS.IBE_DSP_SECTIONS_TL
12.1.1
owner:APPS, object_type:SYNONYM, object_name:IBE_DSP_SECTIONS_TL, status:VALID,
-
TRIGGER: APPS.IBE_DSP_SECTIONS_TL+
12.2.2
owner:APPS, object_type:TRIGGER, object_name:IBE_DSP_SECTIONS_TL+, status:VALID,
-
APPS.IBE_DSP_SECTION_GRP dependencies on FND_LOAD_UTIL
12.2.2
-
VIEW: IBE.IBE_DSP_SECTIONS_TL#
12.2.2
-
TRIGGER: APPS.IBE_DSP_SECTIONS_TL+
12.2.2
-
VIEW: APPS.IBE_DSP_SECTIONS_VL
12.2.2
-
TABLE: IBE.IBE_DSP_SECTIONS_TL
12.1.1
owner:IBE, object_type:TABLE, fnd_design_data:IBE.IBE_DSP_SECTIONS_TL, object_name:IBE_DSP_SECTIONS_TL, status:VALID,
-
TABLE: IBE.IBE_DSP_SECTIONS_TL
12.2.2
owner:IBE, object_type:TABLE, fnd_design_data:IBE.IBE_DSP_SECTIONS_TL, object_name:IBE_DSP_SECTIONS_TL, status:VALID,
-
12.2.2 DBA Data
12.2.2
-
12.2.2 DBA Data
12.2.2
-
12.2.2 FND Design Data
12.2.2
-
APPS.IBE_DSP_SECTION_GRP SQL Statements
12.2.2
-
APPS.IBE_DSP_SECTION_GRP SQL Statements
12.1.1
-
12.2.2 DBA Data
12.2.2
-
FUNCTION: APPS.IBE_DSP_SECTIONS_TL=
12.2.2
-
FUNCTION: APPS.IBE_DSP_SECTIONS_TL=
12.2.2
owner:APPS, object_type:FUNCTION, object_name:IBE_DSP_SECTIONS_TL=, status:VALID,
-
12.2.2 DBA Data
12.2.2
-
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: IBE_DSP_SECTIONS_VL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:IBE.IBE_DSP_SECTIONS_VL, object_name:IBE_DSP_SECTIONS_VL, status:VALID, product: IBE - iStore , implementation_dba_data: APPS.IBE_DSP_SECTIONS_VL ,
-
12.1.1 DBA Data
12.1.1
-
12.1.1 FND Design Data
12.1.1
-
Table: IBE_DSP_SECTIONS_B
12.1.1
owner:IBE, object_type:TABLE, fnd_design_data:IBE.IBE_DSP_SECTIONS_B, object_name:IBE_DSP_SECTIONS_B, status:VALID, product: IBE - iStore , description: This table stores information about the sections. , implementation_dba_data: IBE.IBE_DSP_SECTIONS_B ,
-
Table: IBE_DSP_SECTIONS_B
12.2.2
owner:IBE, object_type:TABLE, fnd_design_data:IBE.IBE_DSP_SECTIONS_B, object_name:IBE_DSP_SECTIONS_B, status:VALID, product: IBE - iStore , description: This table stores information about the sections. , implementation_dba_data: IBE.IBE_DSP_SECTIONS_B ,
-
12.1.1 DBA Data
12.1.1
-
PACKAGE BODY: APPS.IBW_OE_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IBW_OE_PVT, status:VALID,
-
PACKAGE BODY: APPS.IBE_DSP_HIERARCHY_SETUP_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:IBE_DSP_HIERARCHY_SETUP_PVT, status:VALID,
-
12.2.2 DBA Data
12.2.2
-
PACKAGE BODY: APPS.IBE_REPORTING_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IBE_REPORTING_PVT, status:VALID,
-
APPS.IBW_OE_PVT dependencies on FND_LANGUAGES
12.1.1
-
APPS.IBW_OE_PVT dependencies on FND_LANGUAGES
12.2.2
-
PACKAGE BODY: APPS.IBE_DSP_SECTION_GRP
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IBE_DSP_SECTION_GRP, status:VALID,
-
View: IBE_DSP_SECTIONS_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IBE.IBE_DSP_SECTIONS_VL, object_name:IBE_DSP_SECTIONS_VL, status:VALID, product: IBE - iStore , implementation_dba_data: APPS.IBE_DSP_SECTIONS_VL ,