Search Results jtf_seeded_qual_all_tl_pk
Overview
The JTF_SEEDED_QUAL_ALL_TL table is a core data object within the Oracle E-Business Suite (EBS) CRM Foundation (JTF) module, specifically supporting versions 12.1.1 and 12.2.2. It functions as a Multi-Language Support (MLS) or translation table. Its primary role is to store translated text for seeded territory qualifiers, which are predefined criteria used to define and manage sales and service territories within the application. This table enables the CRM system to present territory qualifier names and descriptions in the language of the end-user, a critical requirement for global deployments. It exists to support the base table, JTF_SEEDED_QUAL_ALL_B, which holds the language-independent structural data.
Key Information Stored
The table stores the language-specific textual attributes for each territory qualifier. While the full column list is not detailed in the provided metadata, the structure of a standard MLS table dictates that it will contain, at minimum, the following key columns. The primary key is a composite of the SEEDED_QUAL_ID and LANGUAGE columns. The SEEDED_QUAL_ID is a foreign key linking directly to a record in the base table (JTF_SEEDED_QUAL_ALL_B). The LANGUAGE column holds the language code (e.g., 'US' for American English, 'KO' for Korean). Core content columns typically include NAME and DESCRIPTION, which hold the translated display name and explanatory text for the qualifier. Additional standard MLS columns like SOURCE_LANG and LAST_UPDATE_LOGIN are also typically present to manage the translation process.
Common Use Cases and Queries
The primary use case is the dynamic rendering of the CRM Territory Manager user interface in a user's preferred language. When the application displays a list of qualifiers for territory definition, it queries this table based on the user's session language. Common queries involve joining the translation table with its base table to retrieve a complete, localized record. For example, a report to list all qualifier names in a specific language would use a query pattern such as:
SELECT b.QUALIFIER_TYPE, tl.NAME, tl.DESCRIPTION FROM jtf_seeded_qual_all_b b, jtf_seeded_qual_all_tl tl WHERE b.seeded_qual_id = tl.seeded_qual_id AND tl.language = USERENV('LANG');
Data maintenance involves inserting or updating translation rows for each new language supported after a qualifier is seeded in the base table. Direct data manipulation (DML) on this table is typically performed via Oracle's standard translation utilities or APIs rather than manual SQL.
Related Objects
This table has a direct and singular dependency relationship with its corresponding base table, as documented in the provided metadata.
- Primary Key: JTF_SEEDED_QUAL_ALL_TL_PK on columns (LANGUAGE, SEEDED_QUAL_ID). This enforces uniqueness of translations per language for each qualifier.
- Foreign Key (References): The column JTF_SEEDED_QUAL_ALL_TL.SEEDED_QUAL_ID is a foreign key that references the JTF_SEEDED_QUAL_ALL_B table. This relationship ensures that every translation record is associated with a valid, existing seeded territory qualifier in the base table. There is no indication in the provided metadata that other tables hold foreign keys referencing this translation table.
-
Table: JTF_SEEDED_QUAL_ALL_TL
12.1.1
owner:JTF, object_type:TABLE, fnd_design_data:JTF.JTF_SEEDED_QUAL_ALL_TL, object_name:JTF_SEEDED_QUAL_ALL_TL, status:VALID, product: JTF - CRM Foundation , description: This is the MLS support table for the JTF_SEEDED_QUAL_B table. This table will contain all the translations in different languages for the territory qualifiers that are going to be used to define territories. , implementation_dba_data: JTF.JTF_SEEDED_QUAL_ALL_TL ,
-
Table: JTF_SEEDED_QUAL_ALL_TL
12.2.2
owner:JTF, object_type:TABLE, fnd_design_data:JTF.JTF_SEEDED_QUAL_ALL_TL, object_name:JTF_SEEDED_QUAL_ALL_TL, status:VALID, product: JTF - CRM Foundation , description: This is the MLS support table for the JTF_SEEDED_QUAL_B table. This table will contain all the translations in different languages for the territory qualifiers that are going to be used to define territories. , implementation_dba_data: JTF.JTF_SEEDED_QUAL_ALL_TL ,