Skip to content
Fusion Reference

EGP_SYSTEM_ITEMS_B

Product: EGPmasterPer inventory org

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

Notes

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.
In field listings, K marks a primary-key field.

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.ItemExtractPVO
    OTBI: 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

Table fields: position, field name, description, data type, and flags. 18 fields.
#FieldDescriptionTypeFlags
1INVENTORY_ITEM_IDItem surrogate key — half of every item joinNUMBER
Key
2ORGANIZATION_IDOwning inventory organization — the other half of every item join; items repeat per orgNUMBER
Key
3ITEM_NUMBERThe human-readable item number — a real column, not a flexfield (the Fusion delta from EBS SEGMENT1)VARCHAR2
4ITEM_TYPEItem classification code (finished good, purchased…)VARCHAR2
5INVENTORY_ITEM_STATUS_CODEStatus code gating which transactions the item allowsVARCHAR2
6APPROVAL_STATUSItem approval stateVARCHAR2
7CURRENT_PHASE_IDCurrent lifecycle phase of the itemNUMBER
8ITEM_CATALOG_GROUP_IDItem class providing shared metadata and extensible attributesNUMBER
9PRIMARY_UOM_CODEPrimary unit of measure for the item's quantitiesVARCHAR2
10STOCK_ENABLED_FLAGItem can be stockedVARCHAR2
11MTL_TRANSACTIONS_ENABLED_FLAGInventory transactions allowed for the itemVARCHAR2
12CUSTOMER_ORDER_ENABLED_FLAGCurrently orderable by customersVARCHAR2
13PURCHASING_ENABLED_FLAGCan be put on purchase ordersVARCHAR2
14PLANNING_MAKE_BUY_CODEMake vs buy planning attributeNUMBER
15BOM_ITEM_TYPEType of structure the item may have (standard, model, planning)NUMBER
16FULL_LEAD_TIMEDays to make or procure the itemNUMBER
17LIST_PRICE_PER_UNITDefault purchasing list priceNUMBER
18START_DATE_ACTIVEItem active-from dateDATE

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.

Query parameters
-- ============================================================
-- 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

  • EGP_SYSTEM_ITEMS_BEGP_SYSTEM_ITEMS_TLtranslation · 1:N
    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>'
  • EGP_SYSTEM_ITEMS_BINV_ORG_PARAMETERSforeign key · N:1
    ON EGP_SYSTEM_ITEMS_B.ORGANIZATION_ID = INV_ORG_PARAMETERS.ORGANIZATION_ID
  • EGP_ITEM_REVISIONS_BEGP_SYSTEM_ITEMS_Bforeign key · N:1
    ON 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_ID
  • EGP_ITEM_CAT_ASSIGNMENTSEGP_SYSTEM_ITEMS_Bforeign key · N:1
    ON 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_ID
  • INV_MATERIAL_TXNSEGP_SYSTEM_ITEMS_Bforeign key · N:1
    ON INV_MATERIAL_TXNS.INVENTORY_ITEM_ID = EGP_SYSTEM_ITEMS_B.INVENTORY_ITEM_ID AND INV_MATERIAL_TXNS.ORGANIZATION_ID = EGP_SYSTEM_ITEMS_B.ORGANIZATION_ID
  • INV_ONHAND_QUANTITIES_DETAILEGP_SYSTEM_ITEMS_Bforeign key · N:1
    ON 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_ID
  • INV_ONHAND_QUANTITIES_SUMMARYEGP_SYSTEM_ITEMS_Bforeign key · N:1
    ON 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_ID
  • INV_RESERVATIONSEGP_SYSTEM_ITEMS_Bforeign key · N:1
    ON INV_RESERVATIONS.INVENTORY_ITEM_ID = EGP_SYSTEM_ITEMS_B.INVENTORY_ITEM_ID AND INV_RESERVATIONS.ORGANIZATION_ID = EGP_SYSTEM_ITEMS_B.ORGANIZATION_ID
  • INV_LOT_NUMBERSEGP_SYSTEM_ITEMS_Bforeign key · N:1
    ON INV_LOT_NUMBERS.INVENTORY_ITEM_ID = EGP_SYSTEM_ITEMS_B.INVENTORY_ITEM_ID AND INV_LOT_NUMBERS.ORGANIZATION_ID = EGP_SYSTEM_ITEMS_B.ORGANIZATION_ID
  • INV_SERIAL_NUMBERSEGP_SYSTEM_ITEMS_Bforeign key · N:1
    ON 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_ID
  • INV_TXN_REQUEST_LINESEGP_SYSTEM_ITEMS_Bforeign key · N:1
    ON 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_ID
  • INV_TRANSFER_ORDER_LINESEGP_SYSTEM_ITEMS_Bforeign key · N:1
    ON 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

Browse more Product Mastertables →

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.