EGP_SYSTEM_ITEMS_B
Product: EGPmasterPer inventory orgThe item master — one row per item per inventory organization, carrying the item number as a real column plus status, type, unit of measure, and the control flags for every functional area; every balance, transaction, and order line joins back to it on INVENTORY_ITEM_ID + ORGANIZATION_ID
Items repeat per organization: the master-org row is the definition, child-org rows carry org-level attribute overrides — which org is the master lives in INV_ORG_PARAMETERS, not here. ITEM_NUMBER is a real VARCHAR2 column (no key-flexfield item numbers in Fusion). The DESCRIPTION is NOT on this table at all — it lives only on EGP_SYSTEM_ITEMS_TL.
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.
- 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 withINVENTORY_ITEM_IDon 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_IDon the GL journal tables), or a named business-unit column (PRC_BU_ID/REQ_BU_IDin 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
LANGUAGEcolumn (a _TL translation table or FND_LOOKUP_VALUES) — one row per language. Filter to oneLANGUAGEor a join multiplies rows. - Date-effective
- This is an
_Ftable — one row per entity per effectivity window, withEFFECTIVE_START_DATEandEFFECTIVE_END_DATEpart 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.
Structural facts — how the table is partitioned, not a trap by itself
Join & extract hazards — verify before you rely on this
Translations
EGP_SYSTEM_ITEMS_B is the base table for its translations in EGP_SYSTEM_ITEMS_TL — base ↔ translations, one row per LANGUAGE. Filter to one LANGUAGE or rows multiply.
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.EgpBiccExtractAM.ItemExtractPVOOTBI: Product Management - Item Revisions Real Time
Items data store — keyed on InventoryItemId + OrganizationId, mirroring the item master's key. The Item Revisions subject area is OTBI's item-master surface (there is no standalone Items subject area).
Oracle data-store documentation (opens in new tab)
Fields
18 fields · 2 key
18 fields.
| # | Field | Description | Type | Flags |
|---|---|---|---|---|
| 1 | INVENTORY_ITEM_ID | Item surrogate key — half of every item join | NUMBER | Key |
| 2 | ORGANIZATION_ID | Owning inventory organization — the other half of every item join; items repeat per org | NUMBER | Key |
| 3 | ITEM_NUMBER | The human-readable item number — a real column, not a flexfield (the Fusion delta from EBS SEGMENT1) | VARCHAR2 | |
| 4 | ITEM_TYPE | Item classification code (finished good, purchased…) | VARCHAR2 | |
| 5 | INVENTORY_ITEM_STATUS_CODE | Status code gating which transactions the item allows | VARCHAR2 | |
| 6 | APPROVAL_STATUS | Item approval state | VARCHAR2 | |
| 7 | CURRENT_PHASE_ID | Current lifecycle phase of the item | NUMBER | |
| 8 | ITEM_CATALOG_GROUP_ID | Item class providing shared metadata and extensible attributes | NUMBER | |
| 9 | PRIMARY_UOM_CODE | Primary unit of measure for the item's quantities | VARCHAR2 | |
| 10 | STOCK_ENABLED_FLAG | Item can be stocked | VARCHAR2 | |
| 11 | MTL_TRANSACTIONS_ENABLED_FLAG | Inventory transactions allowed for the item | VARCHAR2 | |
| 12 | CUSTOMER_ORDER_ENABLED_FLAG | Currently orderable by customers | VARCHAR2 | |
| 13 | PURCHASING_ENABLED_FLAG | Can be put on purchase orders | VARCHAR2 | |
| 14 | PLANNING_MAKE_BUY_CODE | Make vs buy planning attribute | NUMBER | |
| 15 | BOM_ITEM_TYPE | Type of structure the item may have (standard, model, planning) | NUMBER | |
| 16 | FULL_LEAD_TIME | Days to make or procure the item | NUMBER | |
| 17 | LIST_PRICE_PER_UNIT | Default purchasing list price | NUMBER | |
| 18 | START_DATE_ACTIVE | Item active-from date | DATE |
Field provenance: hand-curated. 2 key fields.
Boilerplate SQL
Starting point for reading the BICC-landed copy of EGP_SYSTEM_ITEMS_B 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.
6 parameters not filled: <catalog>, <schema>, <language>, <inventory_org_id>, <INVENTORY_ITEM_ID>, <watermark>
-- ============================================================
-- Table : EGP_SYSTEM_ITEMS_B — The item master — one row per item per inventory organization, carrying the item number as a real column plus status, type, unit of measure, and the control flags for every functional area; every balance, transaction, and order line joins back to it on INVENTORY_ITEM_ID + ORGANIZATION_ID
-- Purpose: Column-selected read of EGP_SYSTEM_ITEMS_B — auto-generated from field metadata
-- Grain : One row per inventory org (ORGANIZATION_ID) + INVENTORY_ITEM_ID
-- 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.INVENTORY_ITEM_ID AS "Item surrogate key — half of every item join",
t.ORGANIZATION_ID AS "Owning inventory organization — the other half of every item join; items repeat per org",
t.ITEM_NUMBER AS "The human-readable item number — a real column, not a flexfield (the Fusion delta from EBS SEGMENT1)",
t.ITEM_TYPE AS "Item classification code (finished good, purchased…)",
t.INVENTORY_ITEM_STATUS_CODE AS "Status code gating which transactions the item allows",
t.APPROVAL_STATUS AS "Item approval state",
t.CURRENT_PHASE_ID AS "Current lifecycle phase of the item",
t.ITEM_CATALOG_GROUP_ID AS "Item class providing shared metadata and extensible attributes",
t.PRIMARY_UOM_CODE AS "Primary unit of measure for the item's quantities",
t.STOCK_ENABLED_FLAG AS "Item can be stocked",
t.MTL_TRANSACTIONS_ENABLED_FLAG AS "Inventory transactions allowed for the item",
t.CUSTOMER_ORDER_ENABLED_FLAG AS "Currently orderable by customers",
t.PURCHASING_ENABLED_FLAG AS "Can be put on purchase orders",
t.PLANNING_MAKE_BUY_CODE AS "Make vs buy planning attribute",
t.BOM_ITEM_TYPE AS "Type of structure the item may have (standard, model, planning)",
t.FULL_LEAD_TIME AS "Days to make or procure the item",
t.LIST_PRICE_PER_UNIT AS "Default purchasing list price",
t.START_DATE_ACTIVE AS "Item active-from date",
tl.DESCRIPTION AS "Item short description — the only place it exists",
tl.LONG_DESCRIPTION AS "Item extended description"
FROM <catalog>.<schema>.EGP_SYSTEM_ITEMS_B t
LEFT JOIN <catalog>.<schema>.EGP_SYSTEM_ITEMS_TL tl
ON tl.INVENTORY_ITEM_ID = t.INVENTORY_ITEM_ID
AND tl.ORGANIZATION_ID = t.ORGANIZATION_ID
AND tl.LANGUAGE = '<language>' -- one language or rows multiply
WHERE
t.ORGANIZATION_ID = <inventory_org_id> -- inventory org, NOT the business unit — see quirks guide #item-org-striping
-- AND t.INVENTORY_ITEM_ID = <INVENTORY_ITEM_ID>
-- AND t.LAST_UPDATE_DATE >= TIMESTAMP '<watermark>' -- the column incremental BICC extracts key on
ORDER BY t.INVENTORY_ITEM_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
ON EGP_SYSTEM_ITEMS_B.INVENTORY_ITEM_ID = EGP_SYSTEM_ITEMS_TL.INVENTORY_ITEM_ID AND EGP_SYSTEM_ITEMS_B.ORGANIZATION_ID = EGP_SYSTEM_ITEMS_TL.ORGANIZATION_ID AND EGP_SYSTEM_ITEMS_TL.LANGUAGE = '<language>'ON EGP_SYSTEM_ITEMS_B.ORGANIZATION_ID = INV_ORG_PARAMETERS.ORGANIZATION_IDON EGP_ITEM_REVISIONS_B.INVENTORY_ITEM_ID = EGP_SYSTEM_ITEMS_B.INVENTORY_ITEM_ID AND EGP_ITEM_REVISIONS_B.ORGANIZATION_ID = EGP_SYSTEM_ITEMS_B.ORGANIZATION_IDON EGP_ITEM_CAT_ASSIGNMENTS.INVENTORY_ITEM_ID = EGP_SYSTEM_ITEMS_B.INVENTORY_ITEM_ID AND EGP_ITEM_CAT_ASSIGNMENTS.ORGANIZATION_ID = EGP_SYSTEM_ITEMS_B.ORGANIZATION_IDON INV_MATERIAL_TXNS.INVENTORY_ITEM_ID = EGP_SYSTEM_ITEMS_B.INVENTORY_ITEM_ID AND INV_MATERIAL_TXNS.ORGANIZATION_ID = EGP_SYSTEM_ITEMS_B.ORGANIZATION_IDON INV_ONHAND_QUANTITIES_DETAIL.INVENTORY_ITEM_ID = EGP_SYSTEM_ITEMS_B.INVENTORY_ITEM_ID AND INV_ONHAND_QUANTITIES_DETAIL.ORGANIZATION_ID = EGP_SYSTEM_ITEMS_B.ORGANIZATION_IDON INV_ONHAND_QUANTITIES_SUMMARY.INVENTORY_ITEM_ID = EGP_SYSTEM_ITEMS_B.INVENTORY_ITEM_ID AND INV_ONHAND_QUANTITIES_SUMMARY.ORGANIZATION_ID = EGP_SYSTEM_ITEMS_B.ORGANIZATION_IDON INV_RESERVATIONS.INVENTORY_ITEM_ID = EGP_SYSTEM_ITEMS_B.INVENTORY_ITEM_ID AND INV_RESERVATIONS.ORGANIZATION_ID = EGP_SYSTEM_ITEMS_B.ORGANIZATION_IDON INV_LOT_NUMBERS.INVENTORY_ITEM_ID = EGP_SYSTEM_ITEMS_B.INVENTORY_ITEM_ID AND INV_LOT_NUMBERS.ORGANIZATION_ID = EGP_SYSTEM_ITEMS_B.ORGANIZATION_IDON INV_SERIAL_NUMBERS.INVENTORY_ITEM_ID = EGP_SYSTEM_ITEMS_B.INVENTORY_ITEM_ID AND INV_SERIAL_NUMBERS.CURRENT_ORGANIZATION_ID = EGP_SYSTEM_ITEMS_B.ORGANIZATION_IDON INV_TXN_REQUEST_LINES.INVENTORY_ITEM_ID = EGP_SYSTEM_ITEMS_B.INVENTORY_ITEM_ID AND INV_TXN_REQUEST_LINES.ORGANIZATION_ID = EGP_SYSTEM_ITEMS_B.ORGANIZATION_IDON INV_TRANSFER_ORDER_LINES.INVENTORY_ITEM_ID = EGP_SYSTEM_ITEMS_B.INVENTORY_ITEM_ID AND INV_TRANSFER_ORDER_LINES.DESTINATION_ORGANIZATION_ID = EGP_SYSTEM_ITEMS_B.ORGANIZATION_IDON DOO_LINES_ALL.INVENTORY_ITEM_ID = EGP_SYSTEM_ITEMS_B.INVENTORY_ITEM_ID AND DOO_LINES_ALL.INVENTORY_ORGANIZATION_ID = EGP_SYSTEM_ITEMS_B.ORGANIZATION_IDON DOO_FULFILL_LINES_ALL.INVENTORY_ITEM_ID = EGP_SYSTEM_ITEMS_B.INVENTORY_ITEM_ID AND DOO_FULFILL_LINES_ALL.INVENTORY_ORGANIZATION_ID = EGP_SYSTEM_ITEMS_B.ORGANIZATION_IDON WSH_DELIVERY_DETAILS.INVENTORY_ITEM_ID = EGP_SYSTEM_ITEMS_B.INVENTORY_ITEM_ID AND WSH_DELIVERY_DETAILS.ORGANIZATION_ID = EGP_SYSTEM_ITEMS_B.ORGANIZATION_IDON PO_LINES_ALL.ITEM_ID = EGP_SYSTEM_ITEMS_B.INVENTORY_ITEM_IDON POR_REQUISITION_LINES_ALL.ITEM_ID = EGP_SYSTEM_ITEMS_B.INVENTORY_ITEM_ID AND POR_REQUISITION_LINES_ALL.DESTINATION_ORGANIZATION_ID = EGP_SYSTEM_ITEMS_B.ORGANIZATION_IDON RCV_SHIPMENT_LINES.ITEM_ID = EGP_SYSTEM_ITEMS_B.INVENTORY_ITEM_ID AND RCV_SHIPMENT_LINES.TO_ORGANIZATION_ID = EGP_SYSTEM_ITEMS_B.ORGANIZATION_IDON WIS_WORK_DEFINITIONS.INVENTORY_ITEM_ID = EGP_SYSTEM_ITEMS_B.INVENTORY_ITEM_ID AND WIS_WORK_DEFINITIONS.ORGANIZATION_ID = EGP_SYSTEM_ITEMS_B.ORGANIZATION_IDON WIE_WORK_ORDERS_B.INVENTORY_ITEM_ID = EGP_SYSTEM_ITEMS_B.INVENTORY_ITEM_ID AND WIE_WORK_ORDERS_B.ORGANIZATION_ID = EGP_SYSTEM_ITEMS_B.ORGANIZATION_IDON WIE_WO_OPERATION_MATERIALS.INVENTORY_ITEM_ID = EGP_SYSTEM_ITEMS_B.INVENTORY_ITEM_ID AND WIE_WO_OPERATION_MATERIALS.ORGANIZATION_ID = EGP_SYSTEM_ITEMS_B.ORGANIZATION_IDON CST_STD_COSTS.INVENTORY_ITEM_ID = EGP_SYSTEM_ITEMS_B.INVENTORY_ITEM_ID AND CST_STD_COSTS.INVENTORY_ORG_ID = EGP_SYSTEM_ITEMS_B.ORGANIZATION_ID AND CURRENT_DATE BETWEEN CST_STD_COSTS.EFFECTIVE_START_DATE AND CST_STD_COSTS.EFFECTIVE_END_DATE -- For outer joins, prefilter date-effective inputs (CST_STD_COSTS) in CTEs/subqueries. ON restricts matches but does not remove unmatched historical rows from preserved inputs.ON CST_TRANSACTIONS.INVENTORY_ITEM_ID = EGP_SYSTEM_ITEMS_B.INVENTORY_ITEM_ID AND CST_TRANSACTIONS.INVENTORY_ORG_ID = EGP_SYSTEM_ITEMS_B.ORGANIZATION_IDON AP_INVOICE_LINES_ALL.INVENTORY_ITEM_ID = EGP_SYSTEM_ITEMS_B.INVENTORY_ITEM_ID
More Product Master tables
- EGP_SYSTEM_ITEMS_TLThe item master's translation companion — item description and long description in every installed language, one row per item per organization per language; the only place the item description exists
- EGP_CATEGORIES_BThe category master — one row per category with its user-facing category code and active window; categories are global and keyed by CATEGORY_ID
- EGP_CATEGORY_SETS_BCatalog (category set) definitions — control level, the multiple-assignments flag, hierarchy option, and the default category new items inherit
- EGP_COMPONENTS_BItem structure component lines — one row per component per operation per effectivity window, child of the structure header, with quantity, yield, and WIP supply behavior
- EGP_ITEM_CAT_ASSIGNMENTSThe item-to-category assignment — one row per item, organization, catalog (category set), and category; the bridge every category rollup crosses
- EGP_ITEM_REVISIONS_BItem revisions — one row per revision level of an item in an organization, with effectivity and implementation dates and the change-order line that introduced it