Skip to content
EBS Reference

MTL_ITEM_LOCATIONS

Schema: INVmasterPer inventory org

The stock locator master — the physical bin/row/rack positions inside a subinventory, with the locator name held as SEGMENTn flexfield columns

Identity
Module: InventoryInventory-org partitioned (ORGANIZATION_ID)
Notes

Locator ids are unique only within an organization (the key is INVENTORY_LOCATION_ID + ORGANIZATION_ID) — joining on the id alone crosses orgs silently.

What the badges mean
Schema: INV
Schema: the Oracle product schema that owns the table (INV, ONT, WSH, PO, BOM, WIP, MRP, MSC, AR, AP, GL, HR, APPLSYS) — tells you which product family the object belongs to, not who can query it.
master
Data class: what the table holds — master data, transaction documents, control/configuration, interface/staging, or an APPS-schema view.

Structural facts — how the table is partitioned, not a trap by itself

OU-striped (ORG_ID)
Rows are scoped to an operating unit. A landed extract carries every operating unit’s rows — filter or join on ORG_ID, and don’t confuse it with ORGANIZATION_ID (see the quirks guide).
Per inventory org
Rows are scoped to an inventory organization (plant or warehouse) via ORGANIZATION_ID — a different partition from OU-striped tables (see the quirks guide).
Language-striped
The table carries a LANGUAGE column (a _TL translation table or FND_LOOKUP_VALUES) — one row per language. Filter to one LANGUAGE or a join multiplies rows (see the quirks guide).

Join & extract hazards — verify before you rely on this

View
This is an APPS-schema convenience view, not a physical table. Extract the base tables it joins instead — views can be slow at scale and aren't guaranteed stable across patches.
In field listings, the Key chip marks a primary-key field.

Fields

10 fields · 2 key

10 fields.

Table fields: position, field name, description, data type, and flags. 10 fields.
#FieldDescriptionTypeFlags
1INVENTORY_LOCATION_IDLocator id — unique only within an org; balances and transactions carry it as LOCATOR_IDNUMBER
Primary-key field
2ORGANIZATION_IDInventory organization — part of the keyNUMBER
Primary-key field
3SUBINVENTORY_CODEThe subinventory the locator sits inVARCHAR2
4SEGMENT1Stock Locators flexfield segment 1 — the locator name is the configured concatenation (row/rack/bin is a convention, not a rule)VARCHAR2
5SEGMENT2Stock Locators flexfield segment 2VARCHAR2
6SEGMENT3Stock Locators flexfield segment 3VARCHAR2
7ENABLED_FLAGWhether the locator is activeVARCHAR2
8DISABLE_DATEWhen the locator was disabled — NULL while activeDATE
9PICKING_ORDERPick-path sequence for the locatorNUMBER
10STATUS_IDMaterial status of the locator (WMS)NUMBER

Field provenance: hand-curated. 2 key fields.

Boilerplate SQL

Starting point for reading MTL_ITEM_LOCATIONS on Databricks — real DATE columns need no conversion, and the org anchor is already in place. The optional LAST_UPDATE_DATE watermark is included. Set your Unity Catalog location, schema, and org values below; they’re substituted into the SQL and the copy button.

Query parameters

5 parameters not filled: <catalog>, <schema>, <inventory_org_id>, <INVENTORY_LOCATION_ID>, <watermark>

-- ============================================================
-- Table  : MTL_ITEM_LOCATIONS — The stock locator master — the physical bin/row/rack positions inside a subinventory, with the locator name held as SEGMENTn flexfield columns
-- Purpose: Column-selected read of MTL_ITEM_LOCATIONS — auto-generated from field metadata
-- Grain  : One row per inventory org (ORGANIZATION_ID) + INVENTORY_LOCATION_ID
-- Notes  : Auto-generated skeleton for Oracle EBS R12 data landed in your lakehouse. Dates are real DATE/TIMESTAMP columns — no conversion needed. WHO audit columns omitted (see the quirks guide); the optional LAST_UPDATE_DATE watermark filter supports incremental extracts.
-- ============================================================
SELECT
  t.INVENTORY_LOCATION_ID AS "Locator id — unique only within an org; balances and transactions carry it as LOCATOR_ID",
  t.ORGANIZATION_ID AS "Inventory organization — part of the key",
  t.SUBINVENTORY_CODE AS "The subinventory the locator sits in",
  t.SEGMENT1 AS "Stock Locators flexfield segment 1 — the locator name is the configured concatenation (row/rack/bin is a convention, not a rule)",  -- flexfield segment: concatenation is configuration-defined — see quirks guide #flexfields
  t.SEGMENT2 AS "Stock Locators flexfield segment 2",  -- flexfield segment: concatenation is configuration-defined — see quirks guide #flexfields
  t.SEGMENT3 AS "Stock Locators flexfield segment 3",  -- flexfield segment: concatenation is configuration-defined — see quirks guide #flexfields
  t.ENABLED_FLAG AS "Whether the locator is active",
  t.DISABLE_DATE AS "When the locator was disabled — NULL while active",
  t.PICKING_ORDER AS "Pick-path sequence for the locator",
  t.STATUS_ID AS "Material status of the locator (WMS)"
FROM <catalog>.<schema>.MTL_ITEM_LOCATIONS t
WHERE
  t.ORGANIZATION_ID = <inventory_org_id>  -- inventory org, NOT the operating unit — see quirks guide #two-orgs
  -- AND t.INVENTORY_LOCATION_ID = <INVENTORY_LOCATION_ID>
  -- AND t.LAST_UPDATE_DATE >= TIMESTAMP '<watermark>'  -- WHO watermark, bulk-stamped by batch jobs; see quirks guide #who-columns
ORDER BY t.INVENTORY_LOCATION_ID;

Verified September 2026

Relationships

Diagram of 1-hop neighbors — join details below. FND lookup decode and translation edges are highlighted; they’re the joins newcomers most often get wrong.

Join details

  • MTL_ITEM_LOCATIONSMTL_SECONDARY_INVENTORIESforeign key · N:1
    ON MTL_ITEM_LOCATIONS.SUBINVENTORY_CODE = MTL_SECONDARY_INVENTORIES.SECONDARY_INVENTORY_NAME AND MTL_ITEM_LOCATIONS.ORGANIZATION_ID = MTL_SECONDARY_INVENTORIES.ORGANIZATION_ID
  • MTL_ITEM_LOCATIONSMTL_PARAMETERSforeign key · N:1
    ON MTL_ITEM_LOCATIONS.ORGANIZATION_ID = MTL_PARAMETERS.ORGANIZATION_ID
  • MTL_ONHAND_QUANTITIES_DETAILMTL_ITEM_LOCATIONSforeign key · N:1
    ON MTL_ONHAND_QUANTITIES_DETAIL.LOCATOR_ID = MTL_ITEM_LOCATIONS.INVENTORY_LOCATION_ID AND MTL_ONHAND_QUANTITIES_DETAIL.ORGANIZATION_ID = MTL_ITEM_LOCATIONS.ORGANIZATION_ID
  • MTL_MATERIAL_TRANSACTIONSMTL_ITEM_LOCATIONSforeign key · N:1
    ON MTL_MATERIAL_TRANSACTIONS.LOCATOR_ID = MTL_ITEM_LOCATIONS.INVENTORY_LOCATION_ID AND MTL_MATERIAL_TRANSACTIONS.ORGANIZATION_ID = MTL_ITEM_LOCATIONS.ORGANIZATION_ID

Browse more Inventory tables

More Inventory tables

Maintained by Summit Analytics, a supply chain analytics practice. The tools and references are free — the consulting is selective.

Part of the Summit Analytics reference library.

Work with the practice

Not affiliated with or endorsed by Oracle. Oracle and Oracle E-Business Suite are registered trademarks of Oracle and/or its affiliates.