Search Results jtf_msites_tl
Overview
The JTF_MSITES_TL table is a core translation table within the Oracle E-Business Suite (EBS) CRM Foundation (JTF) module. Its primary role is to store multilingual translations for the descriptive, user-facing columns of its base table, JTF_MSITES_B. This table implements the standard Oracle Applications Translation Table model, enabling the EBS application to support multiple languages for data such as site names and descriptions. The existence of this table is critical for global deployments of Oracle EBS, as it allows organizations to maintain master data like sites in the language preferences of their diverse users while ensuring referential integrity through a link to a single base record.
Key Information Stored
The table stores translated text for language-specific attributes of a site. Its structure is defined by a composite primary key and a set of translated columns. The key columns are MSITE_ID, which is the foreign key to the base table JTF_MSITES_B, and LANGUAGE, which holds the language code (e.g., 'US' for American English). The primary translated column is typically MSITE_NAME, containing the site's name in the specified language. Other common translatable columns in such TL tables include DESCRIPTION. The table also standardly contains SOURCE_LANG to denote the original language of the record and CREATION_DATE, CREATED_BY, LAST_UPDATE_DATE, LAST_UPDATED_BY, and LAST_UPDATE_LOGIN for auditing.
Common Use Cases and Queries
The primary use case is retrieving a site's description in the user's session language for display in forms, reports, and UIs. Application logic automatically queries this table via the base table's views. Common direct queries include retrieving all translations for a specific site or finding where a translation might be missing. A typical reporting query to join base and translated data for the current session language would be:
- SELECT b.MSITE_ID, tl.MSITE_NAME, tl.DESCRIPTION
- FROM JTF_MSITES_B b, JTF_MSITES_TL tl
- WHERE b.MSITE_ID = tl.MSITE_ID
- AND tl.LANGUAGE = USERENV('LANG');
Administrative use cases involve inserting or updating translation rows for new languages during implementation or data migration.
Related Objects
This table has a direct and dependent relationship with several key objects in the JTF schema. Its primary related object is the base table JTF_MSITES_B, to which it is linked via the foreign key constraint on the MSITE_ID column. The application typically accesses this data through a database view (often named JTF_MSITES_VL, where 'VL' stands for View, Localized) which performs a join between the '_B' and '_TL' tables to present a complete, language-aware record. The table's integrity is enforced by the primary key constraint JTF_MSITES_TL_PK. As part of the CRM Foundation, it is referenced by other modules that utilize the centralized site management functionality.
-
Table: JTF_MSITES_TL
12.1.1
owner:JTF, object_type:TABLE, fnd_design_data:JTF.JTF_MSITES_TL, object_name:JTF_MSITES_TL, status:VALID, product: JTF - CRM Foundation , description: Translations for JTF_MSITES_B , implementation_dba_data: JTF.JTF_MSITES_TL ,
-
Table: JTF_MSITES_TL
12.2.2
owner:JTF, object_type:TABLE, fnd_design_data:JTF.JTF_MSITES_TL, object_name:JTF_MSITES_TL, status:VALID, product: JTF - CRM Foundation , description: Translations for JTF_MSITES_B , implementation_dba_data: JTF.JTF_MSITES_TL ,
-
APPS.JTF_MINISITERUNTIME_PVT dependencies on JTF_MSITES_TL
12.2.2
-
APPS.JTF_MINISITERUNTIME_PVT dependencies on JTF_MSITES_TL
12.1.1
-
APPS.JTF_MSITE_GRP dependencies on JTF_MSITES_TL
12.2.2
-
APPS.JTF_MSITE_GRP dependencies on JTF_MSITES_TL
12.1.1
-
APPS.JTF_MSITE_GRP dependencies on FND_LANGUAGES
12.1.1
-
APPS.JTF_MSITE_GRP dependencies on FND_LANGUAGES
12.2.2
-
VIEW: JTF.JTF_MSITES_TL#
12.2.2
owner:JTF, object_type:VIEW, object_name:JTF_MSITES_TL#, status:VALID,
-
APPS.JTF_MSITE_GRP SQL Statements
12.1.1
-
APPS.JTF_MINISITERUNTIME_PVT dependencies on JTF_MSITE_LANGUAGES
12.1.1
-
VIEW: JTF.JTF_MSITES_TL#
12.2.2
-
APPS.JTF_MSITE_GRP SQL Statements
12.2.2
-
SYNONYM: APPS.JTF_MSITES_TL
12.1.1
owner:APPS, object_type:SYNONYM, object_name:JTF_MSITES_TL, status:VALID,
-
SYNONYM: APPS.JTF_MSITES_TL
12.2.2
owner:APPS, object_type:SYNONYM, object_name:JTF_MSITES_TL, status:VALID,
-
APPS.JTF_MINISITERUNTIME_PVT dependencies on JTF_MSITE_LANGUAGES
12.2.2
-
VIEW: APPS.JTF_MSITES_VL
12.2.2
-
TABLE: JTF.JTF_MSITES_TL
12.1.1
owner:JTF, object_type:TABLE, fnd_design_data:JTF.JTF_MSITES_TL, object_name:JTF_MSITES_TL, status:VALID,
-
VIEW: APPS.JTF_MSITES_VL
12.1.1
-
TABLE: JTF.JTF_MSITES_TL
12.2.2
owner:JTF, object_type:TABLE, fnd_design_data:JTF.JTF_MSITES_TL, object_name:JTF_MSITES_TL, status:VALID,
-
APPS.JTF_MSITE_GRP dependencies on JTF_MSITE_GRP
12.2.2
-
APPS.JTF_MSITE_GRP dependencies on JTF_DSP_MSITE_SCT_SECTS
12.1.1
-
Table: JTF_MSITES_B
12.1.1
owner:JTF, object_type:TABLE, fnd_design_data:JTF.JTF_MSITES_B, object_name:JTF_MSITES_B, status:VALID, product: JTF - CRM Foundation , description: Stores Mini Site (Specialty Stores) Information. , implementation_dba_data: JTF.JTF_MSITES_B ,
-
APPS.JTF_MSITE_GRP dependencies on JTF_MSITE_GRP
12.1.1
-
Table: JTF_MSITES_B
12.2.2
owner:JTF, object_type:TABLE, fnd_design_data:JTF.JTF_MSITES_B, object_name:JTF_MSITES_B, status:VALID, product: JTF - CRM Foundation , description: Stores Mini Site (Specialty Stores) Information. , implementation_dba_data: JTF.JTF_MSITES_B ,
-
PACKAGE BODY: APPS.JTF_MINISITERUNTIME_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:JTF_MINISITERUNTIME_PVT, status:VALID,
-
PACKAGE BODY: APPS.JTF_MSITE_GRP
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:JTF_MSITE_GRP, status:VALID,
-
PACKAGE BODY: APPS.JTF_MINISITERUNTIME_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:JTF_MINISITERUNTIME_PVT, status:VALID,
-
APPS.JTF_MSITE_GRP dependencies on JTF_DSP_MSITE_SCT_ITEMS
12.1.1
-
APPS.JTF_MSITE_GRP dependencies on JTF_DSP_MSITE_SCT_SECTS
12.2.2
-
APPS.JTF_MSITE_GRP dependencies on JTF_DSP_MSITE_SCT_ITEMS
12.2.2
-
PACKAGE BODY: APPS.JTF_MSITE_GRP
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:JTF_MSITE_GRP, status:VALID,
-
View: JTF_MSITES_VL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:JTF.JTF_MSITES_VL, object_name:JTF_MSITES_VL, status:VALID, product: JTF - CRM Foundation , implementation_dba_data: APPS.JTF_MSITES_VL ,
-
View: JTF_MSITES_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:JTF.JTF_MSITES_VL, object_name:JTF_MSITES_VL, status:VALID, product: JTF - CRM Foundation , implementation_dba_data: APPS.JTF_MSITES_VL ,
-
APPS.JTF_MSITE_GRP dependencies on JTF_MSITES_B
12.2.2
-
APPS.JTF_MSITE_GRP dependencies on JTF_MSITE_CURRENCIES
12.2.2
-
APPS.JTF_MSITE_GRP dependencies on JTF_MSITES_B
12.1.1
-
APPS.JTF_MSITE_GRP dependencies on JTF_MSITE_ORGS
12.1.1
-
APPS.JTF_MSITE_GRP dependencies on JTF_MSITE_ORGS
12.2.2
-
APPS.JTF_MSITE_GRP dependencies on JTF_MSITE_CURRENCIES
12.1.1
-
APPS.JTF_MINISITERUNTIME_PVT dependencies on JTF_MSITES_B
12.2.2
-
APPS.JTF_MINISITERUNTIME_PVT dependencies on JTF_MSITES_B
12.1.1
-
APPS.JTF_MINISITERUNTIME_PVT SQL Statements
12.1.1
-
APPS.JTF_MINISITERUNTIME_PVT SQL Statements
12.2.2
-
PACKAGE BODY: APPS.JTF_MSITE_GRP
12.2.2
-
PACKAGE BODY: APPS.JTF_MSITE_GRP
12.1.1
-
VIEW: APPS.JTF_MSITES_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:JTF.JTF_MSITES_VL, object_name:JTF_MSITES_VL, status:VALID,
-
VIEW: APPS.JTF_MSITES_VL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:JTF.JTF_MSITES_VL, object_name:JTF_MSITES_VL, status:VALID,
-
12.2.2 DBA Data
12.2.2
-
12.2.2 DBA Data
12.2.2