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
- master
- Data class: what the table holds — master data, transaction documents, control/configuration, interface/staging, or a documented view.
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 →
Fields
18 fields · 2 key
| # | 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_Bon 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 : 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;6 parameters not filled: <catalog>, <schema>, <language>, <inventory_org_id>, <INVENTORY_ITEM_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 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_ID