Skip to content
EBS Reference

MTL_PARAMETERS

Schema: INVcontrolPer inventory org

Inventory organization parameters — one row per inventory org, holding the short org code, the master org it points to, and the org's costing method and locator/lot/serial control defaults; the org list every ORGANIZATION_ID resolves against

Module: InventoryInventory-org partitioned (ORGANIZATION_ID)
Notes

MASTER_ORGANIZATION_ID points at the item-master org — a self-join here answers "which orgs share a master".

What the badges mean
master
Data class: what the table holds — master data, transaction documents, control/configuration, interface/staging, or an APPS-schema view.
In field listings, K marks a primary-key field.

Fields

11 fields · 1 key

Table fields: position, field name, description, data type, and flags. 11 fields.
#FieldDescriptionTypeFlags
1ORGANIZATION_IDThe inventory organization's id — one row per orgNUMBER
Key
2ORGANIZATION_CODEThe short org code (3 characters) users see everywhereVARCHAR2
3MASTER_ORGANIZATION_IDThe item-master org this org draws item definitions from — a self-join answers which orgs share a masterNUMBER
4PRIMARY_COST_METHODThe org's costing method (standard, average, FIFO, LIFO)NUMBER
5DEFAULT_COST_GROUP_IDDefault cost group for the orgNUMBER
6NEGATIVE_INV_RECEIPT_CODEWhether the org allows negative on-handNUMBER
7STOCK_LOCATOR_CONTROL_CODEOrg-level locator control defaultNUMBER
8LOT_NUMBER_UNIQUENESSLot number uniqueness rule for the orgNUMBER
9SERIAL_NUMBER_TYPESerial number uniqueness rule for the orgNUMBER
10CALENDAR_CODEThe workday calendar the org runs onVARCHAR2
11WMS_ENABLED_FLAGWhether the org runs Warehouse Management — WMS orgs extend the on-hand grain with LPNs and cost groupsVARCHAR2

Field provenance: hand-curated. 1 key field.

Boilerplate SQL

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

Query parameters
-- ============================================================
-- Table  : MTL_PARAMETERS — Inventory organization parameters — one row per inventory org, holding the short org code, the master org it points to, and the org's costing method and locator/lot/serial control defaults; the org list every ORGANIZATION_ID resolves against
-- Purpose: Column-selected read of MTL_PARAMETERS — auto-generated from field metadata
-- Grain  : One row per inventory org (ORGANIZATION_ID) — see the Fields section for the full key
-- 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.ORGANIZATION_ID AS "The inventory organization's id — one row per org",
  t.ORGANIZATION_CODE AS "The short org code (3 characters) users see everywhere",
  t.MASTER_ORGANIZATION_ID AS "The item-master org this org draws item definitions from — a self-join answers which orgs share a master",
  t.PRIMARY_COST_METHOD AS "The org's costing method (standard, average, FIFO, LIFO)",
  t.DEFAULT_COST_GROUP_ID AS "Default cost group for the org",
  t.NEGATIVE_INV_RECEIPT_CODE AS "Whether the org allows negative on-hand",
  t.STOCK_LOCATOR_CONTROL_CODE AS "Org-level locator control default",
  t.LOT_NUMBER_UNIQUENESS AS "Lot number uniqueness rule for the org",
  t.SERIAL_NUMBER_TYPE AS "Serial number uniqueness rule for the org",
  t.CALENDAR_CODE AS "The workday calendar the org runs on",
  t.WMS_ENABLED_FLAG AS "Whether the org runs Warehouse Management — WMS orgs extend the on-hand grain with LPNs and cost groups"
FROM <catalog>.<schema>.MTL_PARAMETERS t
WHERE
  t.ORGANIZATION_ID = <inventory_org_id>  -- inventory org, NOT the operating unit — see quirks guide #two-orgs
  -- AND t.LAST_UPDATE_DATE >= TIMESTAMP '<watermark>'  -- WHO watermark, bulk-stamped by batch jobs; see quirks guide #who-columns
ORDER BY t.ORGANIZATION_ID;

4 parameters not filled: <catalog>, <schema>, <inventory_org_id>, <watermark>

Relationships

1-hop neighbors — click a table to navigate there. FND lookup decode and translation edges are highlighted; they’re the joins newcomers most often get wrong.

Join details

  • ORG_ORGANIZATION_DEFINITIONSMTL_PARAMETERSforeign key · 1:1
    ON ORG_ORGANIZATION_DEFINITIONS.ORGANIZATION_ID = MTL_PARAMETERS.ORGANIZATION_ID
  • MTL_PARAMETERSHR_ALL_ORGANIZATION_UNITSforeign key · 1:1
    ON MTL_PARAMETERS.ORGANIZATION_ID = HR_ALL_ORGANIZATION_UNITS.ORGANIZATION_ID
  • MTL_PARAMETERSMTL_PARAMETERSforeign key · N:1
    ON MTL_PARAMETERS1.MASTER_ORGANIZATION_ID = MTL_PARAMETERS2.ORGANIZATION_ID
  • MTL_SYSTEM_ITEMS_BMTL_PARAMETERSforeign key · N:1
    ON MTL_SYSTEM_ITEMS_B.ORGANIZATION_ID = MTL_PARAMETERS.ORGANIZATION_ID
  • MTL_SECONDARY_INVENTORIESMTL_PARAMETERSforeign key · N:1
    ON MTL_SECONDARY_INVENTORIES.ORGANIZATION_ID = MTL_PARAMETERS.ORGANIZATION_ID
  • MTL_ITEM_LOCATIONSMTL_PARAMETERSforeign key · N:1
    ON MTL_ITEM_LOCATIONS.ORGANIZATION_ID = MTL_PARAMETERS.ORGANIZATION_ID
  • MTL_MATERIAL_TRANSACTIONSMTL_PARAMETERSforeign key · N:1
    ON MTL_MATERIAL_TRANSACTIONS.ORGANIZATION_ID = MTL_PARAMETERS.ORGANIZATION_ID
  • MTL_RESERVATIONSMTL_PARAMETERSforeign key · N:1
    ON MTL_RESERVATIONS.ORGANIZATION_ID = MTL_PARAMETERS.ORGANIZATION_ID
  • MTL_SUPPLYMTL_PARAMETERSforeign key · N:1
    ON MTL_SUPPLY.TO_ORGANIZATION_ID = MTL_PARAMETERS.ORGANIZATION_ID
  • OE_ORDER_HEADERS_ALLMTL_PARAMETERSforeign key · N:1
    ON OE_ORDER_HEADERS_ALL.SHIP_FROM_ORG_ID = MTL_PARAMETERS.ORGANIZATION_ID
  • WSH_NEW_DELIVERIESMTL_PARAMETERSforeign key · N:1
    ON WSH_NEW_DELIVERIES.ORGANIZATION_ID = MTL_PARAMETERS.ORGANIZATION_ID
  • PO_LINE_LOCATIONS_ALLMTL_PARAMETERSforeign key · N:1
    ON PO_LINE_LOCATIONS_ALL.SHIP_TO_ORGANIZATION_ID = MTL_PARAMETERS.ORGANIZATION_ID
  • RCV_SHIPMENT_HEADERSMTL_PARAMETERSforeign key · N:1
    ON RCV_SHIPMENT_HEADERS.SHIP_TO_ORG_ID = MTL_PARAMETERS.ORGANIZATION_ID

Browse more Inventorytables →

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.