Search Results wms_strategies_tl
Overview
The WMS_STRATEGIES_TL table is a core translation table within the Warehouse Management (WMS) module of Oracle E-Business Suite (EBS) releases 12.1.1 and 12.2.2. It is designed to support the multilingual capabilities of the application by storing translated text for user-facing strategy names and descriptions. This table operates in conjunction with its base table, WMS_STRATEGIES_B, which holds the language-independent transactional data. The existence of this translation layer is critical for global deployments, ensuring that warehouse operators and managers can interact with the system's strategy definitions—such as picking, putaway, or replenishment rules—in their native language.
Key Information Stored
The table's primary purpose is to store language-specific translations for strategy metadata. Its structure is typical of Oracle EBS translation tables. The most critical columns include STRATEGY_ID, which is the foreign key linking the translation to a specific record in the base table WMS_STRATEGIES_B, and LANGUAGE, which holds the language code (e.g., 'US' for American English). The primary key is a composite of these two columns (STRATEGY_ID, LANGUAGE), ensuring a unique translation per strategy per language. Other significant columns typically found in such TL tables, though not explicitly listed in the provided metadata, would be STRATEGY_NAME and DESCRIPTION, which contain the actual translated text, along with standard WHO columns (CREATED_BY, CREATION_DATE, LAST_UPDATED_BY, LAST_UPDATE_DATE) and potentially SOURCE_LANG for tracking the original language of the data.
Common Use Cases and Queries
The primary use case is the dynamic presentation of strategy information in the user's session language within Oracle WMS forms, reports, and self-service pages. For reporting and data extraction, queries must join the translation table with its base table to retrieve meaningful, language-appropriate results. A common SQL pattern for retrieving strategy details in a specific language would be:
SELECT b.STRATEGY_CODE,
tl.STRATEGY_NAME,
tl.DESCRIPTION
FROM wms_strategies_b b,
wms_strategies_tl tl
WHERE b.strategy_id = tl.strategy_id
AND tl.language = USERENV('LANG');
Administrators may also query this table to audit or manage translations, ensuring all critical strategies have entries for all deployed languages.
Related Objects
WMS_STRATEGIES_TL has a direct and fundamental relationship with the WMS_STRATEGIES_B table, as documented in the provided metadata. The foreign key constraint defines that WMS_STRATEGIES_TL.STRATEGY_ID references WMS_STRATEGIES_B. This relationship is the primary join path for any query requiring translated strategy information. The table is also integral to the underlying views that power the application's user interface, such as WMS_STRATEGIES_VL (where 'VL' denotes a view with language support), which would perform a standard join between the '_B' and '_TL' tables to present a complete, translatable entity to the application layer.
-
Table: WMS_STRATEGIES_TL
12.1.1
owner:WMS, object_type:TABLE, fnd_design_data:WMS.WMS_STRATEGIES_TL, object_name:WMS_STRATEGIES_TL, status:VALID, product: WMS - Warehouse Management , description: Translation Table for WMS Strategies , implementation_dba_data: WMS.WMS_STRATEGIES_TL ,
-
Table: WMS_STRATEGIES_TL
12.2.2
owner:WMS, object_type:TABLE, fnd_design_data:WMS.WMS_STRATEGIES_TL, object_name:WMS_STRATEGIES_TL, status:VALID, product: WMS - Warehouse Management , description: Translation Table for WMS Strategies , implementation_dba_data: WMS.WMS_STRATEGIES_TL ,
-
Table: WMS_STRATEGIES_B
12.1.1
owner:WMS, object_type:TABLE, fnd_design_data:WMS.WMS_STRATEGIES_B, object_name:WMS_STRATEGIES_B, status:VALID, product: WMS - Warehouse Management , description: WMS Strategies , implementation_dba_data: WMS.WMS_STRATEGIES_B ,
-
Table: WMS_STRATEGIES_B
12.2.2
owner:WMS, object_type:TABLE, fnd_design_data:WMS.WMS_STRATEGIES_B, object_name:WMS_STRATEGIES_B, status:VALID, product: WMS - Warehouse Management , description: WMS Strategies , implementation_dba_data: WMS.WMS_STRATEGIES_B ,
-
View: WMS_STRATEGIES_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:WMS.WMS_STRATEGIES_VL, object_name:WMS_STRATEGIES_VL, status:VALID, product: WMS - Warehouse Management , description: WMS strategy MLS view , implementation_dba_data: APPS.WMS_STRATEGIES_VL ,
-
View: WMS_STRATEGIES_VL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WMS.WMS_STRATEGIES_VL, object_name:WMS_STRATEGIES_VL, status:VALID, product: WMS - Warehouse Management , description: WMS strategy MLS view , implementation_dba_data: APPS.WMS_STRATEGIES_VL ,
-
View: WMS_LABEL_REQUESTS_HIST_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WMS.WMS_LABEL_REQUESTS_HIST_V, object_name:WMS_LABEL_REQUESTS_HIST_V, status:VALID, product: WMS - Warehouse Management , description: View to store lable printing request history records , implementation_dba_data: APPS.WMS_LABEL_REQUESTS_HIST_V ,
-
View: WMS_LABEL_REQUESTS_HIST_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:WMS.WMS_LABEL_REQUESTS_HIST_V, object_name:WMS_LABEL_REQUESTS_HIST_V, status:VALID, product: WMS - Warehouse Management , description: View to store lable printing request history records , implementation_dba_data: APPS.WMS_LABEL_REQUESTS_HIST_V ,