INV_ORG_PARAMETERS
Product: INVcontrolPer inventory orgInventory 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
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
- master
- Data class: what the table holds — master data, transaction documents, control/configuration, interface/staging, or a documented view.
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.InvOrgParametersExtractPVOOTBI: 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 → - FscmTopModelAM.ScmExtractAM.ScmRcsBiccExtractAM.InventoryOrgParametersPVOOTBI: 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 →
Fields
18 fields · 1 key
| # | Field | Description | Type | Flags |
|---|---|---|---|---|
| 1 | ORGANIZATION_ID | The inventory org's key — what every ORGANIZATION_ID column resolves against | NUMBER | Key |
| 2 | ORGANIZATION_CODE | Short org code practitioners know the org by | VARCHAR2 | |
| 3 | MASTER_ORGANIZATION_ID | The item-master org this org points to — a self-join answers which orgs share a master | NUMBER | |
| 4 | BUSINESS_UNIT_ID | The business unit the org belongs to — joins the business units view on BU_ID | NUMBER | |
| 5 | LEGAL_ENTITY_ID | The org's legal entity | NUMBER | |
| 6 | INVENTORY_FLAG | Whether the org tracks inventory | VARCHAR2 | |
| 7 | WMS_ENABLED_FLAG | Warehouse-management-enabled org | VARCHAR2 | |
| 8 | EAM_ENABLED_FLAG | Maintenance (EAM) org | VARCHAR2 | |
| 9 | NEGATIVE_INV_RECEIPT_CODE | Whether negative on-hand is allowed | NUMBER | |
| 10 | STOCK_LOCATOR_CONTROL_CODE | Locator control level for the org | VARCHAR2 | |
| 11 | LOT_NUMBER_GENERATION | Where lot numbers are generated (org vs item level) | VARCHAR2 | |
| 12 | LOT_NUMBER_UNIQUENESS | Lot uniqueness scope | VARCHAR2 | |
| 13 | SERIAL_NUMBER_GENERATION | Where serial numbers are generated | VARCHAR2 | |
| 14 | SERIAL_NUMBER_TYPE | Serial uniqueness control | VARCHAR2 | |
| 15 | SOURCE_ORGANIZATION_ID | Default replenishment source org | NUMBER | |
| 16 | SOURCE_SUBINVENTORY | Default replenishment source subinventory | VARCHAR2 | |
| 17 | SOURCE_TYPE | Inventory vs supplier sourcing for replenishment | VARCHAR2 | |
| 18 | TIMEZONE_ID | The org's time zone | NUMBER |
Field provenance: hand-curated. 1 key field.
Boilerplate SQL
Starting point for reading the BICC-landed copy of INV_ORG_PARAMETERSon 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.
-- ============================================================
-- 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;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
ON INV_ORG_PARAMETERS.ORGANIZATION_ID = HR_ALL_ORGANIZATION_UNITS_F.ORGANIZATION_ID- INV_ORG_PARAMETERSINV_ORG_PARAMETERSforeign key · N:1
ON INV_ORG_PARAMETERS1.MASTER_ORGANIZATION_ID = INV_ORG_PARAMETERS2.ORGANIZATION_ID ON INV_ORG_PARAMETERS.BUSINESS_UNIT_ID = FUN_ALL_BUSINESS_UNITS_V.BU_IDON EGP_SYSTEM_ITEMS_B.ORGANIZATION_ID = INV_ORG_PARAMETERS.ORGANIZATION_IDON INV_MATERIAL_TXNS.ORGANIZATION_ID = INV_ORG_PARAMETERS.ORGANIZATION_IDON INV_MATERIAL_TXNS.TRANSFER_ORGANIZATION_ID = INV_ORG_PARAMETERS.ORGANIZATION_IDON INV_RESERVATIONS.ORGANIZATION_ID = INV_ORG_PARAMETERS.ORGANIZATION_IDON INV_SECONDARY_INVENTORIES.ORGANIZATION_ID = INV_ORG_PARAMETERS.ORGANIZATION_IDON INV_ITEM_LOCATIONS.ORGANIZATION_ID = INV_ORG_PARAMETERS.ORGANIZATION_IDON INV_TRANSFER_ORDER_LINES.SOURCE_ORGANIZATION_ID = INV_ORG_PARAMETERS.ORGANIZATION_IDON INV_TRANSFER_ORDER_LINES.DESTINATION_ORGANIZATION_ID = INV_ORG_PARAMETERS.ORGANIZATION_ID