Search Results as_forecast_prob_all_tl
Overview
The AS_FORECAST_PROB_ALL_TL table is a core translation table within the Oracle E-Business Suite (EBS) Sales Foundation module. It functions as the Multi-Language Support (MLS) layer for its base table, AS_FORECAST_PROB_ALL_B. Its primary role is to store translated textual descriptions for sales forecast probability values, enabling the application to display user-friendly probability names (e.g., "High," "Medium," "Low") in the language of the user's session. This design is a standard Oracle EBS pattern for supporting global deployments, separating language-invariant data (stored in the "_B" base table) from language-specific descriptions (stored in the "_TL" table). The table is owned by the OSM schema and is valid for both EBS releases 12.1.1 and 12.2.2.
Key Information Stored
The table's structure is defined by its primary and unique keys, which dictate the data it holds. The primary data elements are the probability value and its corresponding translated description for a specific language. According to the provided metadata, the table has two defined keys: a primary key (AS_FORECAST_PROB_ALL_TL_PK) on the combination of PROBABILITY_VALUE and LANGUAGE, and a unique key (AS_FORECAST_PROB_ALL_TL_UK) on LANGUAGE and PROBABILITY_VALUE. This indicates that for each unique probability value, there can be one translated record per language code (e.g., US, DE, FR). A typical implementation would include columns such as PROBABILITY_VALUE (the key linking to the base table), LANGUAGE (the ISO language code), SOURCE_LANG, DESCRIPTION (the translated text), and CREATION_DATE/CREATED_BY columns for auditing.
Common Use Cases and Queries
The primary use case is the dynamic rendering of forecast probability lists in Oracle EBS forms and reports based on the user's session language. Application logic automatically joins this table to the base table using the PROBABILITY_VALUE and the NLS_LANGUAGE session parameter. A common reporting query would retrieve all translations for administrative purposes. For example:
SELECT PROBABILITY_VALUE, LANGUAGE, DESCRIPTION FROM OSM.AS_FORECAST_PROB_ALL_TL WHERE LANGUAGE = 'DE';– To review German translations.SELECT B.PROBABILITY_VALUE, TL.DESCRIPTION FROM OSM.AS_FORECAST_PROB_ALL_B B, OSM.AS_FORECAST_PROB_ALL_TL TL WHERE B.PROBABILITY_VALUE = TL.PROBABILITY_VALUE AND TL.LANGUAGE = USERENV('LANG');– To join the base and translation tables for the current session language.
Direct data manipulation in this table is typically performed via Oracle's standard translation utilities or APIs rather than manual DML.
Related Objects
This table has a direct and fundamental relationship with its base table, AS_FORECAST_PROB_ALL_B, as indicated by the documented foreign key. The foreign key constraint on the PROBABILITY_VALUE column ensures referential integrity, meaning every record in the "_TL" table must correspond to a valid probability value in the "_B" table. As part of the Sales Foundation module, it supports objects within the Oracle Sales (AS) application, particularly those involving sales forecasting and pipeline management. The table may be accessed by various application programming interfaces (APIs) in the OSM schema and by views that present a language-aware perspective on forecast probability data.
-
Table: AS_FORECAST_PROB_ALL_TL
12.1.1
owner:OSM, object_type:TABLE, fnd_design_data:AS.AS_FORECAST_PROB_ALL_TL, object_name:AS_FORECAST_PROB_ALL_TL, status:VALID, product: AS - Sales Foundation , description: MLS - Translated columns of AS_FORECAST_PROB_ALL_B , implementation_dba_data: OSM.AS_FORECAST_PROB_ALL_TL ,
-
Table: AS_FORECAST_PROB_ALL_TL
12.2.2
owner:OSM, object_type:TABLE, fnd_design_data:AS.AS_FORECAST_PROB_ALL_TL, object_name:AS_FORECAST_PROB_ALL_TL, status:VALID, product: AS - Sales Foundation , description: MLS - Translated columns of AS_FORECAST_PROB_ALL_B , implementation_dba_data: OSM.AS_FORECAST_PROB_ALL_TL ,
-
APPS.AS_FORECAST_PROB_PKG dependencies on AS_FORECAST_PROB_ALL_TL
12.1.1
-
APPS.AS_FORECAST_PROB_PKG dependencies on AS_FORECAST_PROB_ALL_TL
12.2.2
-
APPS.AS_FORECAST_PROB_PKG SQL Statements
12.1.1
-
APPS.AS_FORECAST_PROB_PKG SQL Statements
12.2.2
-
VIEW: APPS.OKX_OPP_WIN_PROB_V
12.1.1
-
SYNONYM: APPS.AS_FORECAST_PROB_ALL_TL
12.2.2
owner:APPS, object_type:SYNONYM, object_name:AS_FORECAST_PROB_ALL_TL, status:VALID,
-
VIEW: OSM.AS_FORECAST_PROB_ALL_TL#
12.2.2
-
APPS.AS_FORECAST_PROB_PKG dependencies on FND_LANGUAGES
12.2.2
-
APPS.AS_FORECAST_PROB_PKG dependencies on FND_LANGUAGES
12.1.1
-
VIEW: OSM.AS_FORECAST_PROB_ALL_TL#
12.2.2
owner:OSM, object_type:VIEW, object_name:AS_FORECAST_PROB_ALL_TL#, status:VALID,
-
VIEW: APPS.AS_FORECAST_PROB_ALL_VL
12.1.1
-
VIEW: APPS.AS_FORECAST_PROB_ALL_VL
12.2.2
-
SYNONYM: APPS.AS_FORECAST_PROB_ALL_TL
12.1.1
owner:APPS, object_type:SYNONYM, object_name:AS_FORECAST_PROB_ALL_TL, status:VALID,
-
VIEW: APPS.OKX_OPP_WIN_PROB_V
12.2.2
-
VIEW: APPS.AS_FORECAST_PROB_VL
12.1.1
-
VIEW: APPS.AS_FORECAST_PROB_VL
12.2.2
-
TABLE: OSM.AS_FORECAST_PROB_ALL_TL
12.1.1
owner:OSM, object_type:TABLE, fnd_design_data:AS.AS_FORECAST_PROB_ALL_TL, object_name:AS_FORECAST_PROB_ALL_TL, status:VALID,
-
VIEW: APPS.AST_SALES_OPP_UWQ_V
12.2.2
-
VIEW: APPS.AS_FORECAST_PROB_ALL_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AS.AS_FORECAST_PROB_ALL_VL, object_name:AS_FORECAST_PROB_ALL_VL, status:VALID,
-
PACKAGE BODY: APPS.AS_FORECAST_PROB_PKG
12.1.1
-
PACKAGE BODY: APPS.AS_FORECAST_PROB_PKG
12.2.2
-
VIEW: APPS.AS_FORECAST_PROB_ALL_VL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AS.AS_FORECAST_PROB_ALL_VL, object_name:AS_FORECAST_PROB_ALL_VL, status:VALID,
-
VIEW: APPS.AST_OPPORTUNITY_LOG_V
12.2.2
-
View: OKX_OPP_WIN_PROB_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKX.OKX_OPP_WIN_PROB_V, object_name:OKX_OPP_WIN_PROB_V, status:VALID, product: OKX - Contracts Integration , description: Forecast Probability , implementation_dba_data: APPS.OKX_OPP_WIN_PROB_V ,
-
Table: AS_FORECAST_PROB_ALL_B
12.1.1
owner:OSM, object_type:TABLE, fnd_design_data:AS.AS_FORECAST_PROB_ALL_B, object_name:AS_FORECAST_PROB_ALL_B, status:VALID, product: AS - Sales Foundation , description: AS_FORECAST_PROB_ALL defines win probability values for sales , implementation_dba_data: OSM.AS_FORECAST_PROB_ALL_B ,
-
VIEW: APPS.AST_SALES_OPP_UWQ_V
12.1.1
-
TABLE: OSM.AS_FORECAST_PROB_ALL_TL
12.2.2
owner:OSM, object_type:TABLE, fnd_design_data:AS.AS_FORECAST_PROB_ALL_TL, object_name:AS_FORECAST_PROB_ALL_TL, status:VALID,
-
APPS.AS_FORECAST_PROB_PKG dependencies on AS_FORECAST_PROB_ALL_B
12.2.2
-
PACKAGE BODY: APPS.AS_FORECAST_PROB_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:AS_FORECAST_PROB_PKG, status:VALID,
-
VIEW: APPS.AS_SALES_OPP_UWQ_V
12.1.1
-
VIEW: APPS.AS_SALES_OPP_UWQ_V
12.2.2
-
APPS.AS_FORECAST_PROB_PKG dependencies on AS_FORECAST_PROB_ALL_B
12.1.1
-
View: OKX_OPP_WIN_PROB_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKX.OKX_OPP_WIN_PROB_V, object_name:OKX_OPP_WIN_PROB_V, status:VALID, product: OKX - Contracts Integration , description: Forecast Probability , implementation_dba_data: APPS.OKX_OPP_WIN_PROB_V ,
-
Table: AS_FORECAST_PROB_ALL_B
12.2.2
owner:OSM, object_type:TABLE, fnd_design_data:AS.AS_FORECAST_PROB_ALL_B, object_name:AS_FORECAST_PROB_ALL_B, status:VALID, product: AS - Sales Foundation , description: AS_FORECAST_PROB_ALL defines win probability values for sales , implementation_dba_data: OSM.AS_FORECAST_PROB_ALL_B ,
-
VIEW: APPS.AST_OPPORTUNITY_LOG_V
12.1.1
-
PACKAGE BODY: APPS.AS_FORECAST_PROB_PKG
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:AS_FORECAST_PROB_PKG, status:VALID,
-
View: AS_FORECAST_PROB_ALL_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AS.AS_FORECAST_PROB_ALL_VL, object_name:AS_FORECAST_PROB_ALL_VL, status:VALID, product: AS - Sales Foundation , description: Forecast Probability (all orgs, single language view) , implementation_dba_data: APPS.AS_FORECAST_PROB_ALL_VL ,
-
View: AS_FORECAST_PROB_ALL_VL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AS.AS_FORECAST_PROB_ALL_VL, object_name:AS_FORECAST_PROB_ALL_VL, status:VALID, product: AS - Sales Foundation , description: Forecast Probability (all orgs, single language view) , implementation_dba_data: APPS.AS_FORECAST_PROB_ALL_VL ,
-
View: AS_FORECAST_PROB_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AS.AS_FORECAST_PROB_VL, object_name:AS_FORECAST_PROB_VL, status:VALID, product: AS - Sales Foundation , description: Forecast probabilities (single-org, single language view) , implementation_dba_data: APPS.AS_FORECAST_PROB_VL ,
-
View: AS_FORECAST_PROB_VL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AS.AS_FORECAST_PROB_VL, object_name:AS_FORECAST_PROB_VL, status:VALID, product: AS - Sales Foundation , description: Forecast probabilities (single-org, single language view) , implementation_dba_data: APPS.AS_FORECAST_PROB_VL ,
-
View: AS_SALES_OPP_UWQ_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AS.AS_SALES_OPP_UWQ_V, object_name:AS_SALES_OPP_UWQ_V, status:VALID, product: AS - Sales Foundation , description: This view is used for Universal Work Queue , implementation_dba_data: APPS.AS_SALES_OPP_UWQ_V ,
-
View: AST_SALES_OPP_UWQ_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AST.AST_SALES_OPP_UWQ_V, object_name:AST_SALES_OPP_UWQ_V, status:VALID, product: AST - TeleSales , implementation_dba_data: APPS.AST_SALES_OPP_UWQ_V ,
-
VIEW: APPS.AST_SALESOPP_UWQ_V
12.1.1
-
View: AST_SALES_OPP_UWQ_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AST.AST_SALES_OPP_UWQ_V, object_name:AST_SALES_OPP_UWQ_V, status:VALID, product: AST - TeleSales , implementation_dba_data: APPS.AST_SALES_OPP_UWQ_V ,
-
View: AST_OPPORTUNITY_LOG_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AST.AST_OPPORTUNITY_LOG_V, object_name:AST_OPPORTUNITY_LOG_V, status:VALID, product: AST - TeleSales , implementation_dba_data: APPS.AST_OPPORTUNITY_LOG_V ,
-
View: AST_OPPORTUNITY_LOG_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AST.AST_OPPORTUNITY_LOG_V, object_name:AST_OPPORTUNITY_LOG_V, status:VALID, product: AST - TeleSales , implementation_dba_data: APPS.AST_OPPORTUNITY_LOG_V ,
-
View: AS_SALES_OPP_UWQ_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AS.AS_SALES_OPP_UWQ_V, object_name:AS_SALES_OPP_UWQ_V, status:VALID, product: AS - Sales Foundation , description: This view is used for Universal Work Queue , implementation_dba_data: APPS.AS_SALES_OPP_UWQ_V ,
-
12.1.1 DBA Data
12.1.1