Search Results mtl_system_items_tl
Overview
The MTL_SYSTEM_ITEMS_TL table is a core translation table within the Oracle E-Business Suite Inventory (INV) module. It is a companion table to the base item definition table, MTL_SYSTEM_ITEMS_B. Its primary role is to support the multilingual capabilities of the application by storing translated text for item descriptions and other translatable attributes. This structure allows a single inventory item, defined by its INVENTORY_ITEM_ID and ORGANIZATION_ID in the base table, to be presented with language-specific descriptions to users in different global locales, a critical requirement for multinational deployments of EBS 12.1.1 and 12.2.2.
Key Information Stored
The table stores language-specific translations for items. Its structure is defined by a composite primary key and translatable columns. The primary key, MTL_SYSTEM_ITEMS_TL_PK, consists of INVENTORY_ITEM_ID, ORGANIZATION_ID, and LANGUAGE. This ensures a unique translation record per item, per organization, per language. The LANGUAGE column holds the language code (e.g., 'US' for American English, 'D' for German). The most critical translatable column is DESCRIPTION, which holds the item description in the specified language. Other columns may exist for additional translatable attributes, but the description is the most commonly utilized. The table also includes standard WHO columns (CREATED_BY, CREATION_DATE, LAST_UPDATED_BY, LAST_UPDATE_DATE, LAST_UPDATE_LOGIN) for auditing.
Common Use Cases and Queries
A primary use case is generating reports or building user interfaces that display item information in the user's session language. Developers must join this table with MTL_SYSTEM_ITEMS_B to retrieve a complete item record. A standard query pattern is:
- SELECT msib.segment1 item_code, mstl.description, mstl.language
- FROM mtl_system_items_b msib, mtl_system_items_tl mstl
- WHERE msib.inventory_item_id = mstl.inventory_item_id
- AND msib.organization_id = mstl.organization_id
- AND mstl.language = USERENV('LANG');
Another common task is verifying or populating translations for items during data migration or localization projects. Administrators may query for items missing a translation in a target language or compare descriptions across languages. The table is also essential for any custom integration that must serve item data in multiple languages.
Related Objects
The table has a direct and mandatory relationship with the base items table. As per the provided metadata, it has a foreign key relationship with MTL_SYSTEM_ITEMS_B on the columns INVENTORY_ITEM_ID and ORGANIZATION_ID. This enforces referential integrity, ensuring every translation record corresponds to a valid item-organization combination. The primary transactional view for items, MTL_SYSTEM_ITEMS_KFV, typically incorporates logic to select the description from MTL_SYSTEM_ITEMS_TL based on the user's session language. Key APIs, such as the Item Import API and the INV_ITEM_EFF_PKG, interact with this table to create and manage translated item data. The E-Business Suite's standard translation tools, like the Oracle Translation Hub integration, ultimately populate this table.
-
Table: MTL_SYSTEM_ITEMS_TL
12.2.2
owner:INV, object_type:TABLE, fnd_design_data:INV.MTL_SYSTEM_ITEMS_TL, object_name:MTL_SYSTEM_ITEMS_TL, status:VALID, product: INV - Inventory , description: Translations table table holding item descriptions in multiple languages , implementation_dba_data: INV.MTL_SYSTEM_ITEMS_TL ,
-
Table: MTL_SYSTEM_ITEMS_TL
12.1.1
owner:INV, object_type:TABLE, fnd_design_data:INV.MTL_SYSTEM_ITEMS_TL, object_name:MTL_SYSTEM_ITEMS_TL, status:VALID, product: INV - Inventory , description: Translations table table holding item descriptions in multiple languages , implementation_dba_data: INV.MTL_SYSTEM_ITEMS_TL ,
-
View: MTL_RELATED_ITEMS_ALL_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_RELATED_ITEMS_ALL_V, object_name:MTL_RELATED_ITEMS_ALL_V, status:VALID, product: INV - Inventory , description: 10SC ONLY , implementation_dba_data: APPS.MTL_RELATED_ITEMS_ALL_V ,
-
View: MTL_RELATED_ITEMS_ALL_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_RELATED_ITEMS_ALL_V, object_name:MTL_RELATED_ITEMS_ALL_V, status:VALID, product: INV - Inventory , description: 10SC ONLY , implementation_dba_data: APPS.MTL_RELATED_ITEMS_ALL_V ,
-
View: MTL_SYSTEM_ITEMS_ER3_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_SYSTEM_ITEMS_ER3_V, object_name:MTL_SYSTEM_ITEMS_ER3_V, status:VALID, product: INV - Inventory , description: ERES : View to support ERES framework for Items Catalog Group Assignment(Summary View) , implementation_dba_data: APPS.MTL_SYSTEM_ITEMS_ER3_V ,
-
View: MTL_SYSTEM_ITEMS_ER3_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_SYSTEM_ITEMS_ER3_V, object_name:MTL_SYSTEM_ITEMS_ER3_V, status:VALID, product: INV - Inventory , description: ERES : View to support ERES framework for Items Catalog Group Assignment(Summary View) , implementation_dba_data: APPS.MTL_SYSTEM_ITEMS_ER3_V ,
-
View: MTL_SYSTEM_ITEMS_ER2_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_SYSTEM_ITEMS_ER2_V, object_name:MTL_SYSTEM_ITEMS_ER2_V, status:VALID, product: INV - Inventory , description: ERES : View to support ERES framework for Items Catalog Group Assignment , implementation_dba_data: APPS.MTL_SYSTEM_ITEMS_ER2_V ,
-
View: MTL_SYSTEM_ITEMS_ER2_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_SYSTEM_ITEMS_ER2_V, object_name:MTL_SYSTEM_ITEMS_ER2_V, status:VALID, product: INV - Inventory , description: ERES : View to support ERES framework for Items Catalog Group Assignment , implementation_dba_data: APPS.MTL_SYSTEM_ITEMS_ER2_V ,
-
View: MTL_ITEM_CATEGORIES_VIEW
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_ITEM_CATEGORIES_VIEW, object_name:MTL_ITEM_CATEGORIES_VIEW, status:VALID, product: INV - Inventory , description: 10SC ONLY , implementation_dba_data: APPS.MTL_ITEM_CATEGORIES_VIEW ,
-
View: MTL_ITEM_CATEGORIES_VIEW
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_ITEM_CATEGORIES_VIEW, object_name:MTL_ITEM_CATEGORIES_VIEW, status:VALID, product: INV - Inventory , description: 10SC ONLY , implementation_dba_data: APPS.MTL_ITEM_CATEGORIES_VIEW ,
-
View: MTL_MFG_PART_NUMBERS_ALL_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_MFG_PART_NUMBERS_ALL_V, object_name:MTL_MFG_PART_NUMBERS_ALL_V, status:VALID, product: INV - Inventory , description: 10SC ONLY , implementation_dba_data: APPS.MTL_MFG_PART_NUMBERS_ALL_V ,
-
View: MTL_MFG_PART_NUMBERS_ALL_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_MFG_PART_NUMBERS_ALL_V, object_name:MTL_MFG_PART_NUMBERS_ALL_V, status:VALID, product: INV - Inventory , description: 10SC ONLY , implementation_dba_data: APPS.MTL_MFG_PART_NUMBERS_ALL_V ,
-
View: MTL_CROSS_REFERENCES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_CROSS_REFERENCES_V, object_name:MTL_CROSS_REFERENCES_V, status:VALID, product: INV - Inventory , description: 10SC ONLY , implementation_dba_data: APPS.MTL_CROSS_REFERENCES_V ,
-
View: MTL_CROSS_REFERENCES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_CROSS_REFERENCES_V, object_name:MTL_CROSS_REFERENCES_V, status:VALID, product: INV - Inventory , description: 10SC ONLY , implementation_dba_data: APPS.MTL_CROSS_REFERENCES_V ,
-
View: MTL_SERIAL_NUMBERS_ALL_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_SERIAL_NUMBERS_ALL_V, object_name:MTL_SERIAL_NUMBERS_ALL_V, status:VALID, product: INV - Inventory , description: 10SC ONLY , implementation_dba_data: APPS.MTL_SERIAL_NUMBERS_ALL_V ,
-
View: MTL_SERIAL_NUMBERS_ALL_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_SERIAL_NUMBERS_ALL_V, object_name:MTL_SERIAL_NUMBERS_ALL_V, status:VALID, product: INV - Inventory , description: 10SC ONLY , implementation_dba_data: APPS.MTL_SERIAL_NUMBERS_ALL_V ,
-
View: MTL_CUSTOMER_ITEM_XREFS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_CUSTOMER_ITEM_XREFS_V, object_name:MTL_CUSTOMER_ITEM_XREFS_V, status:VALID, product: INV - Inventory , description: 10SC ONLY , implementation_dba_data: APPS.MTL_CUSTOMER_ITEM_XREFS_V ,
-
View: MTL_CUSTOMER_ITEM_XREFS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_CUSTOMER_ITEM_XREFS_V, object_name:MTL_CUSTOMER_ITEM_XREFS_V, status:VALID, product: INV - Inventory , description: 10SC ONLY , implementation_dba_data: APPS.MTL_CUSTOMER_ITEM_XREFS_V ,
-
View: MTL_SYSTEM_ITEMS_ER1_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_SYSTEM_ITEMS_ER1_V, object_name:MTL_SYSTEM_ITEMS_ER1_V, status:VALID, product: INV - Inventory , description: ERES : View to support ERES framework for Items , implementation_dba_data: APPS.MTL_SYSTEM_ITEMS_ER1_V ,
-
View: MTL_SYSTEM_ITEMS_ER1_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_SYSTEM_ITEMS_ER1_V, object_name:MTL_SYSTEM_ITEMS_ER1_V, status:VALID, product: INV - Inventory , description: ERES : View to support ERES framework for Items , implementation_dba_data: APPS.MTL_SYSTEM_ITEMS_ER1_V ,
-
View: MTL_SYSTEM_ITEMS_VL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_SYSTEM_ITEMS_VL, object_name:MTL_SYSTEM_ITEMS_VL, status:VALID, product: INV - Inventory , description: System Items multilingual view with concatenated segments column , implementation_dba_data: APPS.MTL_SYSTEM_ITEMS_VL ,
-
View: MTL_SYSTEM_ITEMS_FVL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_SYSTEM_ITEMS_FVL, object_name:MTL_SYSTEM_ITEMS_FVL, status:VALID, product: INV - Inventory , description: Base view for the Define System Items (INVIDITM) form MTL_SYSTEM_ITEMS block. This view is MLS enabled. , implementation_dba_data: APPS.MTL_SYSTEM_ITEMS_FVL ,
-
View: MTL_SYSTEM_ITEMS_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_SYSTEM_ITEMS_VL, object_name:MTL_SYSTEM_ITEMS_VL, status:VALID, product: INV - Inventory , description: System Items multilingual view with concatenated segments column , implementation_dba_data: APPS.MTL_SYSTEM_ITEMS_VL ,
-
View: MTL_SYSTEM_ITEMS_FVL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_SYSTEM_ITEMS_FVL, object_name:MTL_SYSTEM_ITEMS_FVL, status:VALID, product: INV - Inventory , description: Base view for the Define System Items (INVIDITM) form MTL_SYSTEM_ITEMS block. This view is MLS enabled. , implementation_dba_data: APPS.MTL_SYSTEM_ITEMS_FVL ,
-
Table: MTL_SYSTEM_ITEMS_B
12.1.1
owner:INV, object_type:TABLE, fnd_design_data:INV.MTL_SYSTEM_ITEMS_B, object_name:MTL_SYSTEM_ITEMS_B, status:VALID, product: INV - Inventory , description: Inventory item definitions , implementation_dba_data: INV.MTL_SYSTEM_ITEMS_B ,
-
Table: MTL_SYSTEM_ITEMS_B
12.2.2
owner:INV, object_type:TABLE, fnd_design_data:INV.MTL_SYSTEM_ITEMS_B, object_name:MTL_SYSTEM_ITEMS_B, status:VALID, product: INV - Inventory , description: Inventory item definitions , implementation_dba_data: INV.MTL_SYSTEM_ITEMS_B ,