Search Results jtf_stores_tl
Overview
The JTF_STORES_TL table is a core translation table within the Oracle E-Business Suite (EBS) CRM Foundation module (JTF). It functions as the language-specific repository for descriptive attributes of store entities, enabling the application to support multiple languages. Its primary role is to store the translated versions of data held in its base table, JTF_STORES_B, which contains the language-independent, transactional data. This separation of language-specific and language-independent data is a standard architectural pattern in Oracle EBS, facilitating global deployments by allowing a single store record to have multiple translated names and descriptions.
Key Information Stored
The table's structure is defined by its composite primary key, which consists of the STORE_ID and LANGUAGE columns. The STORE_ID is a foreign key that uniquely identifies the master store record in JTF_STORES_B. The LANGUAGE column holds the language code (e.g., 'US', 'FR', 'DE') for the translation. The most critical translated columns typically stored in a *_TL table include STORE_NAME and DESCRIPTION, providing the localized text for the store. Other columns may exist to track metadata such as the source language (SOURCE_LANG) and creation/modification details, following Oracle's standard translation table conventions.
Common Use Cases and Queries
The primary use case is retrieving a store's information in a user's session language for display in CRM forms, reports, and service applications. A common SQL pattern joins the base and translation tables while leveraging the NLS (National Language Support) session settings. For reporting, queries often aggregate store data across multiple languages or identify missing translations for specific locales.
- Retrieving a Store in Session Language:
SELECT b.STORE_NUMBER, tl.STORE_NAME, tl.DESCRIPTION
FROM JTF_STORES_B b, JTF_STORES_TL tl
WHERE b.STORE_ID = tl.STORE_ID
AND tl.LANGUAGE = USERENV('LANG')
AND b.STORE_ID = :p_store_id; - Finding Stores Missing a French Translation:
SELECT b.STORE_ID, b.STORE_NUMBER
FROM JTF_STORES_B b
WHERE NOT EXISTS (
SELECT 1 FROM JTF_STORES_TL tl
WHERE tl.STORE_ID = b.STORE_ID
AND tl.LANGUAGE = 'FR'
);
Related Objects
JTF_STORES_TL has a direct and essential relationship with its base table, as documented in the provided metadata. The table's integrity and purpose are defined by this relationship.
- Primary Key: JTF_STORES_TL_PK (STORE_ID, LANGUAGE)
- Foreign Key (References): The table contains a foreign key constraint where JTF_STORES_TL.STORE_ID references JTF_STORES_B. This enforces that every translation record must correspond to a valid master record in the base table.
- Base Table: JTF_STORES_B is the primary related object, holding the invariant store data. All transactional logic and most integrations will key off the STORE_ID from this base table, with translations being pulled in contextually.
-
Table: JTF_STORES_TL
12.1.1
owner:JTF, object_type:TABLE, fnd_design_data:JTF.JTF_STORES_TL, object_name:JTF_STORES_TL, status:VALID, product: JTF - CRM Foundation , description: Translation for JTF_STORES_B , implementation_dba_data: JTF.JTF_STORES_TL ,
-
Table: JTF_STORES_TL
12.2.2
owner:JTF, object_type:TABLE, fnd_design_data:JTF.JTF_STORES_TL, object_name:JTF_STORES_TL, status:VALID, product: JTF - CRM Foundation , description: Translation for JTF_STORES_B , implementation_dba_data: JTF.JTF_STORES_TL ,
-
APPS.JTF_STORE_GRP dependencies on JTF_STORES_TL
12.1.1
-
APPS.JTF_STORE_GRP dependencies on JTF_STORES_TL
12.2.2
-
APPS.JTF_STORE_GRP dependencies on FND_LANGUAGES
12.1.1
-
VIEW: JTF.JTF_STORES_TL#
12.2.2
owner:JTF, object_type:VIEW, object_name:JTF_STORES_TL#, status:VALID,
-
APPS.JTF_STORE_GRP SQL Statements
12.1.1
-
APPS.JTF_STORE_GRP SQL Statements
12.2.2
-
TABLE: JTF.JTF_STORES_TL
12.1.1
owner:JTF, object_type:TABLE, fnd_design_data:JTF.JTF_STORES_TL, object_name:JTF_STORES_TL, status:VALID,
-
TABLE: JTF.JTF_STORES_TL
12.2.2
owner:JTF, object_type:TABLE, fnd_design_data:JTF.JTF_STORES_TL, object_name:JTF_STORES_TL, status:VALID,
-
APPS.JTF_STORE_GRP dependencies on FND_LANGUAGES
12.2.2
-
SYNONYM: APPS.JTF_STORES_TL
12.2.2
owner:APPS, object_type:SYNONYM, object_name:JTF_STORES_TL, status:VALID,
-
SYNONYM: APPS.JTF_STORES_TL
12.1.1
owner:APPS, object_type:SYNONYM, object_name:JTF_STORES_TL, status:VALID,
-
PACKAGE BODY: APPS.JTF_STORE_GRP
12.1.1
-
TRIGGER: APPS.JTF_STORES_TL+
12.2.2
owner:APPS, object_type:TRIGGER, object_name:JTF_STORES_TL+, status:VALID,
-
VIEW: JTF.JTF_STORES_TL#
12.2.2
-
VIEW: APPS.JTF_STORES_VL
12.1.1
-
TRIGGER: APPS.JTF_STORES_TL+
12.2.2
-
VIEW: APPS.JTF_STORES_VL
12.2.2
-
APPS.JTF_STORE_GRP dependencies on JTF_STORES_B
12.1.1
-
PACKAGE BODY: APPS.JTF_STORE_GRP
12.2.2
-
Table: JTF_STORES_B
12.2.2
owner:JTF, object_type:TABLE, fnd_design_data:JTF.JTF_STORES_B, object_name:JTF_STORES_B, status:VALID, product: JTF - CRM Foundation , description: Stores details of a WEB store. , implementation_dba_data: JTF.JTF_STORES_B ,
-
FUNCTION: APPS.JTF_STORES_TL=
12.2.2
-
PACKAGE BODY: APPS.JTF_STORE_GRP
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:JTF_STORE_GRP, status:VALID,
-
APPS.JTF_STORE_GRP dependencies on JTF_STORES_B
12.2.2
-
View: JTF_STORES_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:JTF.JTF_STORES_VL, object_name:JTF_STORES_VL, status:VALID, product: JTF - CRM Foundation , implementation_dba_data: APPS.JTF_STORES_VL ,
-
Table: JTF_STORES_B
12.1.1
owner:JTF, object_type:TABLE, fnd_design_data:JTF.JTF_STORES_B, object_name:JTF_STORES_B, status:VALID, product: JTF - CRM Foundation , description: Stores details of a WEB store. , implementation_dba_data: JTF.JTF_STORES_B ,
-
FUNCTION: APPS.JTF_STORES_TL=
12.2.2
owner:APPS, object_type:FUNCTION, object_name:JTF_STORES_TL=, status:VALID,
-
PACKAGE BODY: APPS.JTF_STORE_GRP
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:JTF_STORE_GRP, status:VALID,
-
View: JTF_STORES_VL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:JTF.JTF_STORES_VL, object_name:JTF_STORES_VL, status:VALID, product: JTF - CRM Foundation , implementation_dba_data: APPS.JTF_STORES_VL ,
-
12.2.2 DBA Data
12.2.2
-
12.2.2 DBA Data
12.2.2
-
TABLE: JTF.JTF_STORES_B
12.1.1
owner:JTF, object_type:TABLE, fnd_design_data:JTF.JTF_STORES_B, object_name:JTF_STORES_B, status:VALID,
-
VIEW: APPS.JTF_STORES_VL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:JTF.JTF_STORES_VL, object_name:JTF_STORES_VL, status:VALID,
-
VIEW: APPS.JTF_STORES_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:JTF.JTF_STORES_VL, object_name:JTF_STORES_VL, status:VALID,
-
TABLE: JTF.JTF_STORES_B
12.2.2
owner:JTF, object_type:TABLE, fnd_design_data:JTF.JTF_STORES_B, object_name:JTF_STORES_B, status:VALID,
-
12.1.1 FND Design Data
12.1.1
-
12.2.2 DBA Data
12.2.2
-
12.2.2 FND Design 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
-
12.1.1 DBA Data
12.1.1
-
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
-
SYNONYM: PUBLIC.DATABASE_PROPERTIES
12.2.2
owner:PUBLIC, object_type:SYNONYM, object_name:DATABASE_PROPERTIES, status:VALID,
-
12.2.2 DBA Data
12.2.2
-
PACKAGE: SYS.DBMS_STANDARD
12.2.2
owner:SYS, object_type:PACKAGE, object_name:DBMS_STANDARD, status:VALID,