Search Results mtl_item_revisions_tl
Overview
MTL_ITEM_REVISIONS_TL is the translation (TL) table for item revisions in Oracle E-Business Suite Inventory (INV). It stores the language-dependent DESCRIPTION column for each revision of an inventory item, allowing revision descriptions to be presented in multiple installed languages. The base (non-translated) attributes of a revision — including the revision label, effective dates, and status — reside in MTL_ITEM_REVISIONS_B, while MTL_ITEM_REVISIONS_TL holds only the translatable description text keyed to a specific LANGUAGE.
The table is owned by the INV schema and is marked VALID in both Oracle EBS 12.1.1 and 12.2.2. Under the heuristic Data Vault classification mined from its foreign key structure, this object is satellite-leaning: it hangs off the base revision entity and carries descriptive, language-qualified attributes rather than defining new business relationships. It should be modeled as an attribute satellite of the item revision, not as a hub or link.
Key Information Stored
The table contains 11 documented columns. The most significant are:
- INVENTORY_ITEM_ID — identifies the inventory item whose revision is being described; part of the primary key.
- ORGANIZATION_ID — the inventory organization context for the item revision; part of the primary key.
- REVISION_ID — the specific revision record; part of the primary key.
- LANGUAGE — the NLS language code of the translated row; part of the primary key and the discriminator for the translation.
- SOURCE_LANG — indicates the source language of the description, supporting translation workflows.
- DESCRIPTION — the actual translated revision description text, the sole business payload of the table.
- CREATION_DATE / CREATED_BY — audit columns recording row creation.
- LAST_UPDATE_DATE / LAST_UPDATED_BY / LAST_UPDATE_LOGIN — audit columns recording the most recent modification and the login session that made it.
The surrogate primary key is MTL_ITEM_REVISIONS_TL_PK (INVENTORY_ITEM_ID, ORGANIZATION_ID, REVISION_ID, LANGUAGE). Two unique indexes act as business-key candidates: MTL_ITEM_REVISIONS_TL_U1 (INVENTORY_ITEM_ID, ORGANIZATION_ID, REVISION_ID, LANGUAGE) and MTL_ITEM_REVISIONS_TL_U2 (REVISION_ID, LANGUAGE). The foreign key to MTL_ITEM_REVISIONS_B ties each translated row back to its base revision.
Common Use Cases and Queries
Typical uses include multilingual revision reporting, translation completeness checks, and joins to the base table for revision labels.
- Retrieve descriptions for a specific language:
SELECT b.inventory_item_id, b.revision, tl.description FROM mtl_item_revisions_b b, mtl_item_revisions_tl tl WHERE b.inventory_item_id = tl.inventory_item_id AND b.organization_id = tl.organization_id AND b.revision_id = tl.revision_id AND tl.language = USERENV('LANG'); - Identify revisions lacking a translation in a target language.
- Audit recent changes via LAST_UPDATE_DATE and LAST_UPDATED_BY.
- Feed downstream pick, pack, and label printing reports that require localized revision text.
Related Objects
- MTL_ITEM_REVISIONS_B — the base table holding non-translated revision attributes; joined on INVENTORY_ITEM_ID, ORGANIZATION_ID, and REVISION_ID.
- MTL_SYSTEM_ITEMS_B — the inventory item master, joined on INVENTORY_ITEM_ID and ORGANIZATION_ID.
- MTL_ITEM_REVISIONS_VL — the language view exposing base and translated columns together.
- MTL_SYSTEM_ITEMS_VL — the item view that surfaces revisions in a locale-aware manner.
- FND_LANGUAGES — provides the installed languages referenced by the LANGUAGE column.
- MTL_ITEM_LOCATIONS and revision-related INV APIs consume revision data for inventory transactions and label printing.
Together these objects form the revision definition and presentation layer within the Inventory module.
-
Table: MTL_ITEM_REVISIONS_TL
12.1.1
owner:INV, object_type:TABLE, fnd_design_data:INV.MTL_ITEM_REVISIONS_TL, object_name:MTL_ITEM_REVISIONS_TL, status:VALID, product: INV - Inventory , description: Item Revisions table storing translated Description column , implementation_dba_data: INV.MTL_ITEM_REVISIONS_TL ,
-
Table: MTL_ITEM_REVISIONS_TL
12.2.2
owner:INV, object_type:TABLE, fnd_design_data:INV.MTL_ITEM_REVISIONS_TL, object_name:MTL_ITEM_REVISIONS_TL, status:VALID, product: INV - Inventory , description: Item Revisions table storing translated Description column , implementation_dba_data: INV.MTL_ITEM_REVISIONS_TL ,
-
APPS.MTL_ITEM_REVISIONS_UTIL SQL Statements
12.1.1
-
APPS.MTL_ITEM_REVISIONS_UTIL SQL Statements
12.2.2
-
VIEW: INV.MTL_ITEM_REVISIONS_TL#
12.2.2
owner:INV, object_type:VIEW, object_name:MTL_ITEM_REVISIONS_TL#, status:VALID,
-
TABLE: INV.MTL_ITEM_REVISIONS_TL
12.1.1
owner:INV, object_type:TABLE, fnd_design_data:INV.MTL_ITEM_REVISIONS_TL, object_name:MTL_ITEM_REVISIONS_TL, status:VALID,
-
TABLE: INV.MTL_ITEM_REVISIONS_TL
12.2.2
owner:INV, object_type:TABLE, fnd_design_data:INV.MTL_ITEM_REVISIONS_TL, object_name:MTL_ITEM_REVISIONS_TL, status:VALID,
-
VIEW: INV.MTL_ITEM_REVISIONS_TL#
12.2.2
-
SYNONYM: APPS.MTL_ITEM_REVISIONS_TL
12.1.1
owner:APPS, object_type:SYNONYM, object_name:MTL_ITEM_REVISIONS_TL, status:VALID,
-
SYNONYM: APPS.MTL_ITEM_REVISIONS_TL
12.2.2
owner:APPS, object_type:SYNONYM, object_name:MTL_ITEM_REVISIONS_TL, status:VALID,
-
PACKAGE BODY: APPS.MTL_ITEM_REVISIONS_UTIL
12.2.2
-
PACKAGE BODY: APPS.MTL_ITEM_REVISIONS_UTIL
12.1.1
-
VIEW: APPS.MTL_ITEM_REVISIONS_VL
12.1.1
-
VIEW: APPS.MTL_ITEM_REVISIONS_VL
12.2.2
-
VIEW: APPS.MTL_ITEM_REVISIONS_ALL_V
12.1.1
-
VIEW: APPS.MTL_ITEM_REVISIONS_ALL_V
12.2.2
-
VIEW: APPS.MTL_ITEM_ORG_REV_V
12.1.1
-
VIEW: APPS.MTL_ITEM_ORG_REV_V
12.2.2
-
APPS.BOMPINRV SQL Statements
12.2.2
-
APPS.BOMPINRV SQL Statements
12.1.1
-
PACKAGE BODY: APPS.BOMPINRV
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:BOMPINRV, status:VALID,
-
PACKAGE BODY: APPS.BOMPECOD
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:BOMPECOD, status:VALID,
-
PACKAGE BODY: APPS.MTL_ITEM_REVISIONS_UTIL
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:MTL_ITEM_REVISIONS_UTIL, status:VALID,
-
PACKAGE BODY: APPS.BOMPECOD
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:BOMPECOD, status:VALID,
-
PACKAGE BODY: APPS.BOMPINRV
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:BOMPINRV, status:VALID,
-
PACKAGE BODY: APPS.INV_MEANING_SEL
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:INV_MEANING_SEL, status:VALID,
-
PACKAGE BODY: APPS.BOMPINRV
12.2.2
-
PACKAGE BODY: APPS.INVPPROC
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:INVPPROC, status:VALID,
-
PACKAGE BODY: APPS.MTL_ITEM_REVISIONS_UTIL
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:MTL_ITEM_REVISIONS_UTIL, status:VALID,
-
PACKAGE BODY: APPS.BOMPINRV
12.1.1
-
PACKAGE BODY: APPS.BOM_BOM_REVISION_UTIL
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:BOM_BOM_REVISION_UTIL, status:VALID,
-
PACKAGE BODY: APPS.INV_MEANING_SEL
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:INV_MEANING_SEL, status:VALID,
-
PACKAGE BODY: APPS.ENG_CANCEL_ECO
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:ENG_CANCEL_ECO, status:VALID,
-
PACKAGE BODY: APPS.BOM_BOM_REVISION_UTIL
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:BOM_BOM_REVISION_UTIL, status:VALID,
-
PACKAGE BODY: APPS.ENG_CANCEL_ECO
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:ENG_CANCEL_ECO, status:VALID,
-
PACKAGE BODY: APPS.ENG_COPY_TABLE_ROWS_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:ENG_COPY_TABLE_ROWS_PKG, status:VALID,
-
PACKAGE BODY: APPS.ENG_COPY_TABLE_ROWS_PKG
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:ENG_COPY_TABLE_ROWS_PKG, status:VALID,
-
PACKAGE BODY: APPS.INVPPROC
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:INVPPROC, status:VALID,
-
View: MTL_ITEM_REVISIONS_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_ITEM_REVISIONS_VL, object_name:MTL_ITEM_REVISIONS_VL, status:VALID, product: INV - Inventory , description: Item Revisions multilingual view , implementation_dba_data: APPS.MTL_ITEM_REVISIONS_VL ,
-
View: MTL_ITEM_REVISIONS_ALL_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_ITEM_REVISIONS_ALL_V, object_name:MTL_ITEM_REVISIONS_ALL_V, status:VALID, product: INV - Inventory , description: 10SC ONLY , implementation_dba_data: APPS.MTL_ITEM_REVISIONS_ALL_V ,
-
PACKAGE BODY: APPS.INV_ITEM_REVISION_PUB
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:INV_ITEM_REVISION_PUB, status:VALID,
-
PACKAGE BODY: APPS.INVIDIT2
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:INVIDIT2, status:VALID,
-
PACKAGE BODY: APPS.INV_ITEM_REVISION_PUB
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:INV_ITEM_REVISION_PUB, status:VALID,
-
View: MTL_ITEM_REVISIONS_ALL_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_ITEM_REVISIONS_ALL_V, object_name:MTL_ITEM_REVISIONS_ALL_V, status:VALID, product: INV - Inventory , description: 10SC ONLY , implementation_dba_data: APPS.MTL_ITEM_REVISIONS_ALL_V ,
-
PACKAGE BODY: APPS.INVIDIT2
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:INVIDIT2, status:VALID,
-
PACKAGE BODY: APPS.INVUPD2B
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:INVUPD2B, status:VALID,
-
View: MTL_ITEM_REVISIONS_VL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_ITEM_REVISIONS_VL, object_name:MTL_ITEM_REVISIONS_VL, status:VALID, product: INV - Inventory , description: Item Revisions multilingual view , implementation_dba_data: APPS.MTL_ITEM_REVISIONS_VL ,
-
APPS.ENG_REVISED_ITEMS_PKG SQL Statements
12.1.1
-
APPS.ENG_REVISED_ITEMS_PKG SQL Statements
12.2.2
-
PACKAGE BODY: APPS.INVUPD2B
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:INVUPD2B, status:VALID,