Search Results mtl_system_items_vl
Overview
MTL_SYSTEM_ITEMS_VL is a multilingual (ML) view owned by the APPS schema in Oracle E-Business Suite. It is part of the INV – Inventory product and exposes item master definition data for reporting, integration, and inquiry purposes. As indicated by the "VL" suffix convention used throughout EBS, this is a "_VL" view that combines the base (non-translated) columns of the item master with translated description columns sourced from a translation table. Its distinguishing feature is a concatenated segment column, reflecting the concatenated key flexfield (KFF) representation of the item, commonly known as the "Item" flexfield segment string.
The view presents one row per inventory item per organization, drawing on the enabled item master organization contexts. Because it is a standard, supported Oracle view rather than a custom object, the columns exposed are aligned with the underlying base objects and remain a stable reference point across the 12.1.1 and 12.2.2 releases.
Underlying Base Objects
The documented metadata identifies two referenced base objects for MTL_SYSTEM_ITEMS_VL:
- MTL_SYSTEM_ITEMS_B_KFV (VIEW) – the base item master key flexfield view. This object supplies the item attributes (inventory_item_id, organization_id, flags, controls, cost and purchasing attributes, etc.) along with the concatenated flexfield segment column that gives MTL_SYSTEM_ITEMS_VL its concatenated segment column characteristic.
- MTL_SYSTEM_ITEMS_TL (SYNONYM) – the item master translation table (synonym). This supplies translated columns such as the item description and long description, which are dependent on the session's language setting (MLS / language context).
The view text shows the base attribute columns aliased with the prefix "B." (for example, B.ROW_ID, B.INVENTORY_ITEM_ID, B.ORGANIZATION_ID, B.PRIMARY_UOM_CODE, B.ITEM_TYPE, B.INVENTORY_ITEM_STATUS_CODE) and joins the translated description information for the current language. In practice, MTL_SYSTEM_ITEMS_B_KFV is itself defined over the base table MTL_SYSTEM_ITEMS_B, so the VL view ultimately presents a multilingual projection of the same item data used by the base table.
Key Columns
The view exposes a broad set of item definition columns. Selected important columns include:
- INVENTORY_ITEM_ID – the unique internal identifier of the item.
- ORGANIZATION_ID – the organization context in which the item is defined.
- SEGMENT1 … SEGMENTn / concatenated segment column – the item key flexfield segments and their concatenated representation, enabling users to display or search by item number without separately querying the base KFF view.
- DESCRIPTION / LONG_DESCRIPTION – translated item descriptions subject to the language setting.
- PRIMARY_UOM_CODE, PRIMARY_UNIT_OF_MEASURE – the item's primary unit of measure.
- ITEM_TYPE – standard versus other item type classification.
- INVENTORY_ITEM_STATUS_CODE – active/inactive status.
- INVENTORY_ITEM_FLAG, STOCK_ENABLED_FLAG, MTL_TRANSACTIONS_ENABLED_FLAG – inventory enablement indicators.
- BOM_ENABLED_FLAG, BOM_ITEM_TYPE, ENG_ITEM_FLAG – bills of material and engineering attributes.
- PURCHASING_ITEM_FLAG, PURCHASING_ENABLED_FLAG, PURCHASING_TAX_CODE, BUYER_ID, UNIT_OF_ISSUE – purchasing-related attributes.
- COSTING_ENABLED_FLAG, INVENTORY_ASSET_FLAG, COST_OF_SALES_ACCOUNT, EXPENSE_ACCOUNT, ASSET_CATEGORY_ID – costing attributes.
- SHFEL_LIFE_CODE, SHELF_LIFE_DAYS, LOT_CONTROL_CODE, SERIAL_NUMBER_CONTROL_CODE, LOCATION_CONTROL_CODE – lot, serial, and locator controls.
- ALLOWED_UNITS_LOOKUP_CODE, ITEM_CATALOG_GROUP_ID, CATALOG_STATUS_FLAG – catalog and unit-of-measure lookup attributes.
Common Use Cases and Queries
MTL_SYSTEM_ITEMS_VL is frequently used when a report or integration must display the item number (concatenated segments) together with the translated description, without manually joining the KFF view and the translation table. Typical scenarios include item inquiry reports, purchasing and receiving interfaces, BOM and routing reports, and multilingual implementations where descriptions must respect each user's language.
Sample SQL:
- List items with segment and translated description:
SELECT INVENTORY_ITEM_ID, ORGANIZATION_ID, SEGMENT1, DESCRIPTION FROM MTL_SYSTEM_ITEMS_VL WHERE ORGANIZATION_ID = :org_id; - Find active stock-enabled items:
SELECT INVENTORY_ITEM_ID, SEGMENT1, DESCRIPTION FROM MTL_SYSTEM_ITEMS_VL WHERE ORGANIZATION_ID = :org_id AND INVENTORY_ITEM_STATUS_CODE = 'Active' AND STOCK_ENABLED_FLAG = 'Y'; - Join to item transactions:
SELECT t.TRANSACTION_ID, v.SEGMENT1, v.DESCRIPTION FROM MTL_MATERIAL_TRANSACTIONS t, MTL_SYSTEM_ITEMS_VL v WHERE v.INVENTORY_ITEM_ID = t.INVENTORY_ITEM_ID AND v.ORGANIZATION_ID = t.ORGANIZATION_ID;
Because translation columns depend on the session language, queries executed in different language environments may return different description values while the base item attributes remain identical. This behavior should be considered when comparing query output across environments.
-
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_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_EAM_ASSET_ACTIVITIES_WB_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_EAM_ASSET_ACTIVITIES_WB_V, object_name:MTL_EAM_ASSET_ACTIVITIES_WB_V, status:VALID, product: INV - Inventory , description: View for Activity Workbench , implementation_dba_data: APPS.MTL_EAM_ASSET_ACTIVITIES_WB_V ,
-
View: MTL_EAM_ASSET_ACTIVITIES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_EAM_ASSET_ACTIVITIES_V, object_name:MTL_EAM_ASSET_ACTIVITIES_V, status:VALID, product: INV - Inventory , description: View for Asset Activities , implementation_dba_data: APPS.MTL_EAM_ASSET_ACTIVITIES_V ,
-
View: MTL_ONHAND_LPN_MWB_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_ONHAND_LPN_MWB_V, object_name:MTL_ONHAND_LPN_MWB_V, status:VALID, product: INV - Inventory , description: LPN content view for Material Workbench , implementation_dba_data: APPS.MTL_ONHAND_LPN_MWB_V ,
-
View: MTL_ONHAND_LPN_MWB_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_ONHAND_LPN_MWB_V, object_name:MTL_ONHAND_LPN_MWB_V, status:VALID, product: INV - Inventory , description: LPN content view for Material Workbench , implementation_dba_data: APPS.MTL_ONHAND_LPN_MWB_V ,
-
View: MTL_ONHAND_LPN_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_ONHAND_LPN_V, object_name:MTL_ONHAND_LPN_V, status:VALID, product: INV - Inventory , description: This view contains information about packed material that resides in LPNs. , implementation_dba_data: APPS.MTL_ONHAND_LPN_V ,
-
View: MTL_RCV_MWB_NEW_OH_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_RCV_MWB_NEW_OH_V, object_name:MTL_RCV_MWB_NEW_OH_V, status:VALID, product: INV - Inventory , implementation_dba_data: APPS.MTL_RCV_MWB_NEW_OH_V ,
-
View: MTL_RCV_MWB_ONHAND_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_RCV_MWB_ONHAND_V, object_name:MTL_RCV_MWB_ONHAND_V, status:VALID, product: INV - Inventory , description: MTL_RCV_MWB_ONHAND_V is used in the material workbench to query the on-hand quantities of materials that are in receiving. , implementation_dba_data: APPS.MTL_RCV_MWB_ONHAND_V ,
-
View: MTL_ONHAND_NEW_LPN_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_ONHAND_NEW_LPN_V, object_name:MTL_ONHAND_NEW_LPN_V, status:VALID, product: INV - Inventory , description: LPN content view , implementation_dba_data: APPS.MTL_ONHAND_NEW_LPN_V ,
-
View: MTL_ONHAND_ITEMS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_ONHAND_ITEMS_V, object_name:MTL_ONHAND_ITEMS_V, status:VALID, product: INV - Inventory , description: 10SC ONLY , implementation_dba_data: APPS.MTL_ONHAND_ITEMS_V ,
-
View: MTL_ONHAND_ITEMS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_ONHAND_ITEMS_V, object_name:MTL_ONHAND_ITEMS_V, status:VALID, product: INV - Inventory , description: 10SC ONLY , implementation_dba_data: APPS.MTL_ONHAND_ITEMS_V ,
-
View: MTL_ONHAND_NEW_LPN_MWB_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_ONHAND_NEW_LPN_MWB_V, object_name:MTL_ONHAND_NEW_LPN_MWB_V, status:VALID, product: INV - Inventory , description: LPN content view for Material Workbench , implementation_dba_data: APPS.MTL_ONHAND_NEW_LPN_MWB_V ,
-
View: MTL_ONHAND_NEW_LPN_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_ONHAND_NEW_LPN_V, object_name:MTL_ONHAND_NEW_LPN_V, status:VALID, product: INV - Inventory , description: LPN content view , implementation_dba_data: APPS.MTL_ONHAND_NEW_LPN_V ,
-
View: MTL_RCV_MWB_ONHAND_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_RCV_MWB_ONHAND_V, object_name:MTL_RCV_MWB_ONHAND_V, status:VALID, product: INV - Inventory , description: MTL_RCV_MWB_ONHAND_V is used in the material workbench to query the on-hand quantities of materials that are in receiving. , implementation_dba_data: APPS.MTL_RCV_MWB_ONHAND_V ,
-
View: MTL_ONHAND_NEW_LPN_MWB_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_ONHAND_NEW_LPN_MWB_V, object_name:MTL_ONHAND_NEW_LPN_MWB_V, status:VALID, product: INV - Inventory , description: LPN content view for Material Workbench , implementation_dba_data: APPS.MTL_ONHAND_NEW_LPN_MWB_V ,
-
View: MTL_ONHAND_LPN_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_ONHAND_LPN_V, object_name:MTL_ONHAND_LPN_V, status:VALID, product: INV - Inventory , description: This view contains information about packed material that resides in LPNs. , implementation_dba_data: APPS.MTL_ONHAND_LPN_V ,
-
View: MTL_RCV_SERIAL_MWB_OH_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_RCV_SERIAL_MWB_OH_V, object_name:MTL_RCV_SERIAL_MWB_OH_V, status:VALID, product: INV - Inventory , description: MTL_RCV_SERIAL_MWB_OH_V is a new view which needs to be used for querying data when the user chooses subinventory type of Receiving and user has entered serials and grade code in the Find window, or has entered grade in the Find window and , implementation_dba_data: APPS.MTL_RCV_SERIAL_MWB_OH_V ,
-
View: MTL_RCV_SERIAL_MWB_OH_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_RCV_SERIAL_MWB_OH_V, object_name:MTL_RCV_SERIAL_MWB_OH_V, status:VALID, product: INV - Inventory , description: MTL_RCV_SERIAL_MWB_OH_V is a new view which needs to be used for querying data when the user chooses subinventory type of Receiving and user has entered serials and grade code in the Find window, or has entered grade in the Find window and , implementation_dba_data: APPS.MTL_RCV_SERIAL_MWB_OH_V ,
-
View: MTL_RCV_MWB_NEW_OH_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_RCV_MWB_NEW_OH_V, object_name:MTL_RCV_MWB_NEW_OH_V, status:VALID, product: INV - Inventory , description: MTL_RCV_MWB_NEW_OH_V is used in the material workbench to query the on-hand quantities of materials that are in receiving. , implementation_dba_data: APPS.MTL_RCV_MWB_NEW_OH_V ,
-
View: MTL_LOT_ONHAND_SUM_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_LOT_ONHAND_SUM_V, object_name:MTL_LOT_ONHAND_SUM_V, status:VALID, product: INV - Inventory , description: Quantity view for Lot uom conversion use , implementation_dba_data: APPS.MTL_LOT_ONHAND_SUM_V ,
-
View: MTL_LOT_ONHAND_SUM_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_LOT_ONHAND_SUM_V, object_name:MTL_LOT_ONHAND_SUM_V, status:VALID, product: INV - Inventory , description: The view is used to get total onhand of a lot number. , implementation_dba_data: APPS.MTL_LOT_ONHAND_SUM_V ,
-
View: MTL_ONHAND_SERIAL_MWB_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_ONHAND_SERIAL_MWB_V, object_name:MTL_ONHAND_SERIAL_MWB_V, status:VALID, product: INV - Inventory , description: Onhand Serial View for the Material Work Bench , implementation_dba_data: APPS.MTL_ONHAND_SERIAL_MWB_V ,
-
View: MTL_ONHAND_SERIAL_MWB_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_ONHAND_SERIAL_MWB_V, object_name:MTL_ONHAND_SERIAL_MWB_V, status:VALID, product: INV - Inventory , description: Onhand Serial View for the Material Work Bench , implementation_dba_data: APPS.MTL_ONHAND_SERIAL_MWB_V ,
-
View: MTL_ONHAND_TOTAL_MWB_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_ONHAND_TOTAL_MWB_V, object_name:MTL_ONHAND_TOTAL_MWB_V, status:VALID, product: INV - Inventory , description: Onhand Total View for the Material Work Bench , implementation_dba_data: APPS.MTL_ONHAND_TOTAL_MWB_V ,
-
View: MTL_ONHAND_SERIAL_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_ONHAND_SERIAL_V, object_name:MTL_ONHAND_SERIAL_V, status:VALID, product: INV - Inventory , implementation_dba_data: APPS.MTL_ONHAND_SERIAL_V ,
-
View: MTL_ONHAND_TOTAL_MWB_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_ONHAND_TOTAL_MWB_V, object_name:MTL_ONHAND_TOTAL_MWB_V, status:VALID, product: INV - Inventory , description: Onhand Total View for the Material Work Bench , implementation_dba_data: APPS.MTL_ONHAND_TOTAL_MWB_V ,
-
View: MTL_ONHAND_TOTAL_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_ONHAND_TOTAL_V, object_name:MTL_ONHAND_TOTAL_V, status:VALID, product: INV - Inventory , implementation_dba_data: APPS.MTL_ONHAND_TOTAL_V ,
-
View: MTL_ONHAND_SERIAL_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_ONHAND_SERIAL_V, object_name:MTL_ONHAND_SERIAL_V, status:VALID, product: INV - Inventory , implementation_dba_data: APPS.MTL_ONHAND_SERIAL_V ,
-
View: MTL_ONHAND_TOTAL_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_ONHAND_TOTAL_V, object_name:MTL_ONHAND_TOTAL_V, status:VALID, product: INV - Inventory , implementation_dba_data: APPS.MTL_ONHAND_TOTAL_V ,
-
View: MTL_RCV_SERIAL_OH_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_RCV_SERIAL_OH_V, object_name:MTL_RCV_SERIAL_OH_V, status:VALID, product: INV - Inventory , description: MTL_RCV_SERIAL_OH_V is used in the material workbench to query the on-hand quantities of materials that are in receiving and are serial controlled. , implementation_dba_data: APPS.MTL_RCV_SERIAL_OH_V ,
-
View: MTL_RCV_SERIAL_OH_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_RCV_SERIAL_OH_V, object_name:MTL_RCV_SERIAL_OH_V, status:VALID, product: INV - Inventory , description: MTL_RCV_SERIAL_OH_V is used in the material workbench to query the on-hand quantities of materials that are in receiving and are serial controlled. , implementation_dba_data: APPS.MTL_RCV_SERIAL_OH_V ,
-
View: MTL_MATERIAL_TXNS_VAL_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_MATERIAL_TXNS_VAL_V, object_name:MTL_MATERIAL_TXNS_VAL_V, status:VALID, product: INV - Inventory , description: - Retrofitted , implementation_dba_data: APPS.MTL_MATERIAL_TXNS_VAL_V ,
-
View: MTL_MATERIAL_TXNS_VAL_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_MATERIAL_TXNS_VAL_V, object_name:MTL_MATERIAL_TXNS_VAL_V, status:VALID, product: INV - Inventory , description: - Retrofitted , implementation_dba_data: APPS.MTL_MATERIAL_TXNS_VAL_V ,
-
View: MTL_CLIENT_ITEMS_VL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_CLIENT_ITEMS_VL, object_name:MTL_CLIENT_ITEMS_VL, status:VALID, product: INV - Inventory , implementation_dba_data: APPS.MTL_CLIENT_ITEMS_VL ,
-
View: MTL_TRANSACTIONS_TEMP_ALL_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_TRANSACTIONS_TEMP_ALL_V, object_name:MTL_TRANSACTIONS_TEMP_ALL_V, status:VALID, product: INV - Inventory , description: - Retrofitted , implementation_dba_data: APPS.MTL_TRANSACTIONS_TEMP_ALL_V ,
-
View: MTL_TRANSACTIONS_TEMP_ALL_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_TRANSACTIONS_TEMP_ALL_V, object_name:MTL_TRANSACTIONS_TEMP_ALL_V, status:VALID, product: INV - Inventory , description: - Retrofitted , implementation_dba_data: APPS.MTL_TRANSACTIONS_TEMP_ALL_V ,