Skip to content
Fusion Reference

INV_ORG_PARAMETERS

Product: INVcontrolPer inventory org

Inventory organization parameters — one row per inventory org, holding the short org code, the item-master org it points to, its business unit and legal entity, and the org's locator/lot/serial control defaults; the org list every ORGANIZATION_ID resolves against

Identity
Module: FoundationInventory-org partitioned (ORGANIZATION_ID)
Notes

The Fusion analog of EBS MTL_PARAMETERS. MASTER_ORGANIZATION_ID points at the item-master org (see quirks #item-org-striping); BUSINESS_UNIT_ID ties the org to its BU — a numeric id column, not the ORG_ID stripe later waves' documents carry. Org names are not here — join ORGANIZATION_ID to the HR org master.

What the badges mean
Product: EGP
Product: the Oracle product family that owns the object — the short code Oracle's Tables and Views documentation lists as the object owner. Fusion is SaaS, so this isn't a database schema; there's no SQL path to the tables at all (see the quirks guide).
master
Data class: what the table holds — master data, transaction documents, control/configuration, interface/staging, or a documented view.

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

BU-striped (ORG_ID)
Rows are scoped to a business unit. The column is still named ORG_ID, but in Fusion it means business unit, not the EBS operating unit — treat any migrated “operating unit” filter as suspect (see the quirks guide).
Per inventory org
Rows are scoped to an inventory organization via ORGANIZATION_ID — always pair it with INVENTORY_ITEM_ID on item-level joins (see the quirks guide).
Set / ledger / named-BU striped
Some tables stripe by a named column instead of ORG_ID: reference data set (SET_ID — see the quirks guide), ledger (LEDGER_ID on the GL journal tables), or a named business-unit column (PRC_BU_ID / REQ_BU_ID in procurement). The table page’s partition line names the column, and the generated SQL anchors on it — never treat these tables as unpartitioned.
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.

Join & extract hazards — verify before you rely on this

Date-effective
This is an _F table — one row per entity per effectivity window, with EFFECTIVE_START_DATE and EFFECTIVE_END_DATE part of the key. Join without a window filter and every fact multiplies by history (see the quirks guide).
View
This is a documented convenience view, not a physical table. Extract through the BICC data store that fronts its base objects instead of assuming the view lands as-is.
In field listings, the Key chip marks a key field — a member of the documented primary key or of a documented unique index.

Extract access

The delivered surfaces that reach this table — the BICC extract data store (PVO) for bulk extraction and the OTBI subject areas for real-time queries. There is no SQL path to the SaaS database.

  • FscmTopModelAM.ScmExtractAM.ScmRcsBiccExtractAM.InvOrgParametersExtractPVO
    OTBI: Inventory Organization Real Time

    Inventory Organization Parameters data store (note the ScmRcsBiccExtractAM path — reference data, not the Inv extract AM); keyed on OrganizationId.

    Oracle data-store documentation (opens in new tab)
  • FscmTopModelAM.ScmExtractAM.ScmRcsBiccExtractAM.InventoryOrgParametersPVO
    OTBI: Inventory Organization Real Time

    The overlapping Inventory Organizations data store — also keyed on OrganizationId; pick one of the two org-parameter stores, not both.

    Oracle data-store documentation (opens in new tab)

Fields

18 fields · 1 key

18 fields.

Table fields: position, field name, description, data type, and flags. 18 fields.
#FieldDescriptionTypeFlags
1ORGANIZATION_IDThe inventory org's key — what every ORGANIZATION_ID column resolves againstNUMBER
Key
2ORGANIZATION_CODEShort org code practitioners know the org byVARCHAR2
3MASTER_ORGANIZATION_IDThe item-master org this org points to — a self-join answers which orgs share a masterNUMBER
4BUSINESS_UNIT_IDThe business unit the org belongs to — joins the business units view on BU_IDNUMBER
5LEGAL_ENTITY_IDThe org's legal entityNUMBER
6INVENTORY_FLAGWhether the org tracks inventoryVARCHAR2
7WMS_ENABLED_FLAGWarehouse-management-enabled orgVARCHAR2
8EAM_ENABLED_FLAGMaintenance (EAM) orgVARCHAR2
9NEGATIVE_INV_RECEIPT_CODEWhether negative on-hand is allowedNUMBER
10STOCK_LOCATOR_CONTROL_CODELocator control level for the orgVARCHAR2
11LOT_NUMBER_GENERATIONWhere lot numbers are generated (org vs item level)VARCHAR2
12LOT_NUMBER_UNIQUENESSLot uniqueness scopeVARCHAR2
13SERIAL_NUMBER_GENERATIONWhere serial numbers are generatedVARCHAR2
14SERIAL_NUMBER_TYPESerial uniqueness controlVARCHAR2
15SOURCE_ORGANIZATION_IDDefault replenishment source orgNUMBER
16SOURCE_SUBINVENTORYDefault replenishment source subinventoryVARCHAR2
17SOURCE_TYPEInventory vs supplier sourcing for replenishmentVARCHAR2
18TIMEZONE_IDThe org's time zoneNUMBER

Field provenance: hand-curated. 1 key field.

Boilerplate SQL

Starting point for reading the BICC-landed copy of INV_ORG_PARAMETERS on Databricks — real DATE columns need no conversion, and the org anchor and the LAST_UPDATE_DATE watermark (the column incremental BICC extracts key on) 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

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

-- ============================================================
-- Table  : INV_ORG_PARAMETERS — Inventory organization parameters — one row per inventory org, holding the short org code, the item-master org it points to, its business unit and legal entity, and the org's locator/lot/serial control defaults; the org list every ORGANIZATION_ID resolves against
-- Purpose: Column-selected read of INV_ORG_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 Fusion Cloud data landed in your lakehouse by a BICC extract — there is no SQL path to the SaaS database. Column names follow Oracle's table documentation — if your landed data still carries PVO attribute headers, map names first; see quirks #pvo-drift. 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 org's key — what every ORGANIZATION_ID column resolves against",
  t.ORGANIZATION_CODE AS "Short org code practitioners know the org by",
  t.MASTER_ORGANIZATION_ID AS "The item-master org this org points to — a self-join answers which orgs share a master",
  t.BUSINESS_UNIT_ID AS "The business unit the org belongs to — joins the business units view on BU_ID",
  t.LEGAL_ENTITY_ID AS "The org's legal entity",
  t.INVENTORY_FLAG AS "Whether the org tracks inventory",
  t.WMS_ENABLED_FLAG AS "Warehouse-management-enabled org",
  t.EAM_ENABLED_FLAG AS "Maintenance (EAM) org",
  t.NEGATIVE_INV_RECEIPT_CODE AS "Whether negative on-hand is allowed",
  t.STOCK_LOCATOR_CONTROL_CODE AS "Locator control level for the org",
  t.LOT_NUMBER_GENERATION AS "Where lot numbers are generated (org vs item level)",
  t.LOT_NUMBER_UNIQUENESS AS "Lot uniqueness scope",
  t.SERIAL_NUMBER_GENERATION AS "Where serial numbers are generated",
  t.SERIAL_NUMBER_TYPE AS "Serial uniqueness control",
  t.SOURCE_ORGANIZATION_ID AS "Default replenishment source org",
  t.SOURCE_SUBINVENTORY AS "Default replenishment source subinventory",
  t.SOURCE_TYPE AS "Inventory vs supplier sourcing for replenishment",
  t.TIMEZONE_ID AS "The org's time zone"
FROM <catalog>.<schema>.INV_ORG_PARAMETERS t
WHERE
  t.ORGANIZATION_ID = <inventory_org_id>  -- inventory org, NOT the business unit — see quirks guide #item-org-striping
  -- AND t.LAST_UPDATE_DATE >= TIMESTAMP '<watermark>'  -- the column incremental BICC extracts key on
ORDER BY t.ORGANIZATION_ID;

Verified September 2026 · docs release 26C

Column names differ in BICC extracts — see PVO header drift.

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

  • INV_ORG_PARAMETERSHR_ALL_ORGANIZATION_UNITS_Fforeign key · 1:N
    ON INV_ORG_PARAMETERS.ORGANIZATION_ID = HR_ALL_ORGANIZATION_UNITS_F.ORGANIZATION_ID AND CURRENT_DATE BETWEEN HR_ALL_ORGANIZATION_UNITS_F.EFFECTIVE_START_DATE AND HR_ALL_ORGANIZATION_UNITS_F.EFFECTIVE_END_DATE -- For outer joins, prefilter date-effective inputs (HR_ALL_ORGANIZATION_UNITS_F) in CTEs/subqueries. ON restricts matches but does not remove unmatched historical rows from preserved inputs.
  • INV_ORG_PARAMETERSINV_ORG_PARAMETERSforeign key · N:1
    ON INV_ORG_PARAMETERS1.MASTER_ORGANIZATION_ID = INV_ORG_PARAMETERS2.ORGANIZATION_ID
  • INV_ORG_PARAMETERSFUN_ALL_BUSINESS_UNITS_Vforeign key · N:1
    ON INV_ORG_PARAMETERS.BUSINESS_UNIT_ID = FUN_ALL_BUSINESS_UNITS_V.BU_ID
  • EGP_SYSTEM_ITEMS_BINV_ORG_PARAMETERSforeign key · N:1
    ON EGP_SYSTEM_ITEMS_B.ORGANIZATION_ID = INV_ORG_PARAMETERS.ORGANIZATION_ID
  • INV_MATERIAL_TXNSINV_ORG_PARAMETERSforeign key · N:1
    ON INV_MATERIAL_TXNS.ORGANIZATION_ID = INV_ORG_PARAMETERS.ORGANIZATION_ID
  • INV_MATERIAL_TXNSINV_ORG_PARAMETERSforeign key · N:1
    ON INV_MATERIAL_TXNS.TRANSFER_ORGANIZATION_ID = INV_ORG_PARAMETERS.ORGANIZATION_ID
  • INV_RESERVATIONSINV_ORG_PARAMETERSforeign key · N:1
    ON INV_RESERVATIONS.ORGANIZATION_ID = INV_ORG_PARAMETERS.ORGANIZATION_ID
  • INV_SECONDARY_INVENTORIESINV_ORG_PARAMETERSforeign key · N:1
    ON INV_SECONDARY_INVENTORIES.ORGANIZATION_ID = INV_ORG_PARAMETERS.ORGANIZATION_ID
  • INV_ITEM_LOCATIONSINV_ORG_PARAMETERSforeign key · N:1
    ON INV_ITEM_LOCATIONS.ORGANIZATION_ID = INV_ORG_PARAMETERS.ORGANIZATION_ID
  • INV_TRANSFER_ORDER_LINESINV_ORG_PARAMETERSforeign key · N:1
    ON INV_TRANSFER_ORDER_LINES.SOURCE_ORGANIZATION_ID = INV_ORG_PARAMETERS.ORGANIZATION_ID
  • INV_TRANSFER_ORDER_LINESINV_ORG_PARAMETERSforeign key · N:1
    ON INV_TRANSFER_ORDER_LINES.DESTINATION_ORGANIZATION_ID = INV_ORG_PARAMETERS.ORGANIZATION_ID
  • DOO_FULFILL_LINES_ALLINV_ORG_PARAMETERSforeign key · N:1
    ON DOO_FULFILL_LINES_ALL.FULFILL_ORG_ID = INV_ORG_PARAMETERS.ORGANIZATION_ID
  • WSH_DELIVERY_DETAILSINV_ORG_PARAMETERSforeign key · N:1
    ON WSH_DELIVERY_DETAILS.ORGANIZATION_ID = INV_ORG_PARAMETERS.ORGANIZATION_ID
  • WSH_NEW_DELIVERIESINV_ORG_PARAMETERSforeign key · N:1
    ON WSH_NEW_DELIVERIES.ORGANIZATION_ID = INV_ORG_PARAMETERS.ORGANIZATION_ID
  • PO_LINE_LOCATIONS_ALLINV_ORG_PARAMETERSforeign key · N:1
    ON PO_LINE_LOCATIONS_ALL.SHIP_TO_ORGANIZATION_ID = INV_ORG_PARAMETERS.ORGANIZATION_ID
  • POR_REQUISITION_LINES_ALLINV_ORG_PARAMETERSforeign key · N:1
    ON POR_REQUISITION_LINES_ALL.DESTINATION_ORGANIZATION_ID = INV_ORG_PARAMETERS.ORGANIZATION_ID
  • RCV_SHIPMENT_HEADERSINV_ORG_PARAMETERSforeign key · N:1
    ON RCV_SHIPMENT_HEADERS.SHIP_TO_ORG_ID = INV_ORG_PARAMETERS.ORGANIZATION_ID
  • RCV_TRANSACTIONSINV_ORG_PARAMETERSforeign key · N:1
    ON RCV_TRANSACTIONS.ORGANIZATION_ID = INV_ORG_PARAMETERS.ORGANIZATION_ID
  • WIS_WORK_DEFINITIONSINV_ORG_PARAMETERSforeign key · N:1
    ON WIS_WORK_DEFINITIONS.ORGANIZATION_ID = INV_ORG_PARAMETERS.ORGANIZATION_ID
  • WIS_WORK_CENTERS_BINV_ORG_PARAMETERSforeign key · N:1
    ON WIS_WORK_CENTERS_B.ORGANIZATION_ID = INV_ORG_PARAMETERS.ORGANIZATION_ID
  • WIS_RESOURCES_BINV_ORG_PARAMETERSforeign key · N:1
    ON WIS_RESOURCES_B.ORGANIZATION_ID = INV_ORG_PARAMETERS.ORGANIZATION_ID
  • WIE_WORK_ORDERS_BINV_ORG_PARAMETERSforeign key · N:1
    ON WIE_WORK_ORDERS_B.ORGANIZATION_ID = INV_ORG_PARAMETERS.ORGANIZATION_ID
  • CST_COST_INV_ORGSINV_ORG_PARAMETERSforeign key · 1:1
    ON CST_COST_INV_ORGS.INV_ORG_ID = INV_ORG_PARAMETERS.ORGANIZATION_ID

Browse more Foundation tables

More Foundation 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 Fusion Cloud Applications are registered trademarks of Oracle and/or its affiliates.