Search Results as_sales_methodology_tl_pk
Overview
The AS_SALES_METHODOLOGY_TL table is a core data object within the Oracle E-Business Suite (EBS) Sales Foundation module (AS). It functions as a translation table, specifically designed to support the Multi-Language Support (MLS) architecture. Its primary role is to store language-specific, translatable text for sales methodology entities defined in the base table, AS_SALES_METHODOLOGY_B. This separation of base data from its translated descriptions enables a single EBS installation to present user-facing methodology names and descriptions in multiple languages, which is critical for global deployments.
Key Information Stored
The table stores translated attributes for sales methodologies. Based on standard EBS translation table conventions and the provided metadata, its critical columns include:
- SALES_METHODOLOGY_ID: The foreign key linking each translation row to its corresponding master record in AS_SALES_METHODOLOGY_B.
- LANGUAGE: The language code (e.g., 'US' for American English, 'F' for French) identifying the translation.
- SOURCE_LANG: A column (implied by standard TL table design) indicating the original language in which the data was entered.
- NAME: The translated name of the sales methodology as displayed in the application's user interface.
- DESCRIPTION: A more detailed translated description of the sales methodology's purpose and process.
The primary key, AS_SALES_METHODOLOGY_TL_PK, is a composite key on LANGUAGE and SALES_METHODOLOGY_ID, ensuring a unique translation per language for each methodology.
Common Use Cases and Queries
The primary use case is retrieving methodology information in a user's session language for UI display, reports, and integrated processes. A standard query pattern joins the base and translation tables while filtering for the current language and source language to ensure a complete result set.
SELECT b.sales_methodology_id,
tl.name,
tl.description
FROM as_sales_methodology_b b,
as_sales_methodology_tl tl
WHERE b.sales_methodology_id = tl.sales_methodology_id
AND tl.language = USERENV('LANG')
AND tl.source_lang = USERENV('LANG_SRC');
Administrative use cases include seeding new translations or auditing existing ones across languages. Reporting often requires joining through this table to present user-friendly methodology names in localized reports.
Related Objects
AS_SALES_METHODOLOGY_TL has a direct, dependent relationship with the AS_SALES_METHODOLOGY_B base table. The documented foreign key constraint defines this critical link.
- AS_SALES_METHODOLOGY_B: This is the parent table. The foreign key from AS_SALES_METHODOLOGY_TL.SALES_METHODOLOGY_ID references the primary key in AS_SALES_METHODOLOGY_B. All translation rows are child records of a master row in this base table, which holds non-translatable attributes and system-level data for each sales methodology.
In application logic, this table is typically accessed via views or APIs provided by the Sales Foundation module, which handle the language resolution logic transparently.
-
Table: AS_SALES_METHODOLOGY_TL
12.1.1
owner:OSM, object_type:TABLE, fnd_design_data:AS.AS_SALES_METHODOLOGY_TL, object_name:AS_SALES_METHODOLOGY_TL, status:VALID, product: AS - Sales Foundation , description: For MLS - Translated columns of AS_SALES_METHODOLOGY_B , implementation_dba_data: OSM.AS_SALES_METHODOLOGY_TL ,
-
Table: AS_SALES_METHODOLOGY_TL
12.2.2
owner:OSM, object_type:TABLE, fnd_design_data:AS.AS_SALES_METHODOLOGY_TL, object_name:AS_SALES_METHODOLOGY_TL, status:VALID, product: AS - Sales Foundation , description: For MLS - Translated columns of AS_SALES_METHODOLOGY_B , implementation_dba_data: OSM.AS_SALES_METHODOLOGY_TL ,
-
eTRM - AS Tables and Views
12.2.2
description: - Retrofitted ,
-
eTRM - AS Tables and Views
12.1.1
description: - Retrofitted ,
-
eTRM - AS Tables and Views
12.2.2
description: - Retrofitted ,
-
eTRM - AS Tables and Views
12.1.1
description: - Retrofitted ,