Search Results wms_objects_tl
Overview
The WMS_OBJECTS_TL table is a core translation table within the Oracle E-Business Suite Warehouse Management (WMS) module. It serves as the repository for language-specific descriptions and names of business objects defined in the system. Its primary role is to support the multi-language capability (NLS) of Oracle EBS, enabling the display of object names and descriptions in a user's preferred language. This table is directly linked to its base table, WMS_OBJECTS_B, which holds the language-independent attributes. The existence of this translation layer is critical for global deployments of Oracle EBS 12.1.1 and 12.2.2, ensuring that warehouse operations and user interfaces reflect localized terminology.
Key Information Stored
The table's structure is characteristic of Oracle's translation table architecture. The key columns, as indicated by the provided metadata, include the primary key column OBJECT_ID. This column forms the foreign key relationship to the WMS_OBJECTS_B table, ensuring each translated entry corresponds to a valid base object. While the full column list is not detailed in the excerpt, standard translation table design dictates it will also contain a LANGUAGE column (or similar) to identify the translation language (e.g., 'US', 'FR', 'DE') and a SOURCE_LANG column. The core content columns are typically named OBJECT_NAME and DESCRIPTION, storing the translated textual labels for the warehouse object as seen in the application's forms and reports.
Common Use Cases and Queries
This table is primarily accessed by the application runtime to fetch localized strings. Common functional and reporting scenarios include generating user-facing reports in a specific language or auditing translation completeness. A typical query to retrieve an object's translation for a session's language would join to the base table. For example, to find all translated names for a specific object type, one might use a pattern such as:
SELECT tl.object_name, tl.description, tl.language FROM wms_objects_tl tl, wms_objects_b b WHERE b.object_id = tl.object_id AND b.object_type = '<TYPE>' AND tl.language = USERENV('LANG');
Another common administrative query is to identify objects missing translations for a target language by comparing entries against the source language records.
Related Objects
The most critical related object, as explicitly defined in the foreign key metadata, is the base table WMS_OBJECTS_B. The foreign key WMS_OBJECTS_TL.OBJECT_ID references WMS_OBJECTS_B, establishing a master-detail relationship. The WMS_OBJECTS_TL_PK is the primary key constraint, likely on a composite of OBJECT_ID and LANGUAGE. This table is also referenced by various WMS application forms, reports, and PL/SQL packages that handle object metadata and user interface rendering. Any custom integrations or extensions that display object names must also correctly query this translation table to respect the user's language setting.
-
Table: WMS_OBJECTS_TL
12.1.1
owner:WMS, object_type:TABLE, fnd_design_data:WMS.WMS_OBJECTS_TL, object_name:WMS_OBJECTS_TL, status:VALID, product: WMS - Warehouse Management , description: Translation Table for WMS Business Objects , implementation_dba_data: WMS.WMS_OBJECTS_TL ,
-
Table: WMS_OBJECTS_TL
12.2.2
owner:WMS, object_type:TABLE, fnd_design_data:WMS.WMS_OBJECTS_TL, object_name:WMS_OBJECTS_TL, status:VALID, product: WMS - Warehouse Management , description: Translation Table for WMS Business Objects , implementation_dba_data: WMS.WMS_OBJECTS_TL ,
-
Table: WMS_OBJECTS_B
12.1.1
owner:WMS, object_type:TABLE, fnd_design_data:WMS.WMS_OBJECTS_B, object_name:WMS_OBJECTS_B, status:VALID, product: WMS - Warehouse Management , description: WMS Business Objects , implementation_dba_data: WMS.WMS_OBJECTS_B ,
-
Table: WMS_OBJECTS_B
12.2.2
owner:WMS, object_type:TABLE, fnd_design_data:WMS.WMS_OBJECTS_B, object_name:WMS_OBJECTS_B, status:VALID, product: WMS - Warehouse Management , description: WMS Business Objects , implementation_dba_data: WMS.WMS_OBJECTS_B ,
-
View: WMS_OBJECTS_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:WMS.WMS_OBJECTS_VL, object_name:WMS_OBJECTS_VL, status:VALID, product: WMS - Warehouse Management , description: WMS business object MLS view , implementation_dba_data: APPS.WMS_OBJECTS_VL ,
-
View: WMS_OBJECTS_VL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WMS.WMS_OBJECTS_VL, object_name:WMS_OBJECTS_VL, status:VALID, product: WMS - Warehouse Management , description: WMS business object MLS view , implementation_dba_data: APPS.WMS_OBJECTS_VL ,