Skip to content
Fusion Reference

DOO_FULFILL_LINES_ALL

Product: DOOtransactionBU-striped (ORG_ID)

Fulfillment lines — the executable, shippable unit of an order line and the correct analytics grain for order-to-ship reporting, with the quantity lifecycle, schedule/actual dates, fulfillment org, and amounts

Grain note

Fulfillment lines SPLIT during processing (SPLIT_FROM_FLINE_ID points at the original) — sum quantities knowing splits and cancels add rows

Notes

Carries both LINE_ID and HEADER_ID, so it joins straight to either tier. Three org-shaped columns, all different: ORG_ID (business unit), INVENTORY_ORGANIZATION_ID (item-master org), FULFILL_ORG_ID (the fulfilling warehouse). FULFILLMENT_MODE distinguishes regular, drop-ship, and back-to-back flows.

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.

Header & line

DOO_FULFILL_LINES_ALL lines join back to their header DOO_LINES_ALL — and the org column — so a line never fans out.

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.DooBiccExtractAM.FulfillLineExtractPVO
    OTBI: Order Management - Order Lines Real Time

    Fulfillment Lines data store — keyed on FulfillLineId, with documented links to the header and line stores. No fulfillment-lines OTBI subject area exists in the 26B book; the Order Lines subject area is the nearest real-time surface.

    Oracle data-store documentation →

Fields

19 fields · 1 key

Table fields: position, field name, description, data type, and flags. 19 fields.
#FieldDescriptionTypeFlags
1FULFILL_LINE_IDSurrogate key of the fulfillment line — the analytics grainNUMBER
Key
2LINE_IDParent order lineNUMBER
3HEADER_IDOrder header — carried directly, so no two-hop join neededNUMBER
4ORG_IDThe business unit owning the rowNUMBER
5INVENTORY_ITEM_IDItem being fulfilledNUMBER
6INVENTORY_ORGANIZATION_IDThe item-master inventory organizationNUMBER
7FULFILL_ORG_IDThe fulfilling (ship-from) organization — a third org concept, distinct from both ORG_ID and the item-master orgNUMBER
8ORDERED_QTYQuantity ordered on this fulfillment lineNUMBER
9ORDERED_UOMUOM of the ordered quantityVARCHAR2
10SHIPPED_QTYQuantity shippedNUMBER
11FULFILLED_QTYQuantity fulfilledNUMBER
12STATUS_CODECurrent fulfillment statusVARCHAR2
13ON_HOLDFulfillment line blocked from further processingVARCHAR2
14REQUEST_SHIP_DATEThe customer's originally requested ship dateDATE
15SCHEDULE_SHIP_DATECurrently planned ship dateDATE
Filter date
16ACTUAL_SHIP_DATEDate actually shippedDATE
17EXTENDED_AMOUNTMonetary amount for the fulfillment-line quantityNUMBER
18SPLIT_FROM_FLINE_IDThe original fulfillment line this row split from — splits add rowsNUMBER
19FULFILLMENT_MODERegular, drop-ship, or back-to-back fulfillment flowVARCHAR2

Field provenance: hand-curated. 1 key field.

Boilerplate SQL

Starting point for reading the BICC-landed copy of DOO_FULFILL_LINES_ALLon 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  : DOO_FULFILL_LINES_ALL — Fulfillment lines — the executable, shippable unit of an order line and the correct analytics grain for order-to-ship reporting, with the quantity lifecycle, schedule/actual dates, fulfillment org, and amounts
-- Purpose: Column-selected read of DOO_FULFILL_LINES_ALL — auto-generated from field metadata
-- Grain  : One row per business unit (ORG_ID) + FULFILL_LINE_ID
-- Caution: Fulfillment lines SPLIT during processing (SPLIT_FROM_FLINE_ID points at the original) — sum quantities knowing splits and cancels add rows
-- 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.FULFILL_LINE_ID AS "Surrogate key of the fulfillment line — the analytics grain",
  t.LINE_ID AS "Parent order line",
  t.HEADER_ID AS "Order header — carried directly, so no two-hop join needed",
  t.ORG_ID AS "The business unit owning the row",
  t.INVENTORY_ITEM_ID AS "Item being fulfilled",
  t.INVENTORY_ORGANIZATION_ID AS "The item-master inventory organization",
  t.FULFILL_ORG_ID AS "The fulfilling (ship-from) organization — a third org concept, distinct from both ORG_ID and the item-master org",
  t.ORDERED_QTY AS "Quantity ordered on this fulfillment line",
  t.ORDERED_UOM AS "UOM of the ordered quantity",
  t.SHIPPED_QTY AS "Quantity shipped",
  t.FULFILLED_QTY AS "Quantity fulfilled",
  t.STATUS_CODE AS "Current fulfillment status",
  t.ON_HOLD AS "Fulfillment line blocked from further processing",
  t.REQUEST_SHIP_DATE AS "The customer's originally requested ship date",
  t.SCHEDULE_SHIP_DATE AS "Currently planned ship date",
  t.ACTUAL_SHIP_DATE AS "Date actually shipped",
  t.EXTENDED_AMOUNT AS "Monetary amount for the fulfillment-line quantity",
  t.SPLIT_FROM_FLINE_ID AS "The original fulfillment line this row split from — splits add rows",
  t.FULFILLMENT_MODE AS "Regular, drop-ship, or back-to-back fulfillment flow"
FROM <catalog>.<schema>.DOO_FULFILL_LINES_ALL t
WHERE
  t.ORG_ID = <business_unit_id>  -- business unit — Fusion _ALL means BU, not the EBS operating unit; see quirks guide #all-means-bu
  -- AND t.FULFILL_LINE_ID = <FULFILL_LINE_ID>
  -- AND t.SCHEDULE_SHIP_DATE >= DATE '<DATE_FROM>'
  -- AND t.SCHEDULE_SHIP_DATE <= DATE '<DATE_TO>'
  -- AND t.LAST_UPDATE_DATE >= TIMESTAMP '<watermark>'  -- the column incremental BICC extracts key on
ORDER BY t.FULFILL_LINE_ID;

7 parameters not filled: <catalog>, <schema>, <business_unit_id>, <FULFILL_LINE_ID>, <DATE_FROM>, <DATE_TO>, <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

  • DOO_LINES_ALLDOO_FULFILL_LINES_ALLheader line · 1:N
    ON DOO_LINES_ALL.LINE_ID = DOO_FULFILL_LINES_ALL.LINE_ID AND DOO_LINES_ALL.ORG_ID = DOO_FULFILL_LINES_ALL.ORG_ID
  • DOO_FULFILL_LINES_ALLDOO_HEADERS_ALLforeign key · N:1
    ON DOO_FULFILL_LINES_ALL.HEADER_ID = DOO_HEADERS_ALL.HEADER_ID AND DOO_FULFILL_LINES_ALL.ORG_ID = DOO_HEADERS_ALL.ORG_ID
  • DOO_FULFILL_LINES_ALLEGP_SYSTEM_ITEMS_Bforeign key · N:1
    ON 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_ID
  • DOO_FULFILL_LINES_ALLINV_ORG_PARAMETERSforeign key · N:1
    ON DOO_FULFILL_LINES_ALL.FULFILL_ORG_ID = INV_ORG_PARAMETERS.ORGANIZATION_ID
  • DOO_HOLD_INSTANCESDOO_FULFILL_LINES_ALLforeign key · N:1
    ON DOO_HOLD_INSTANCES.FULFILL_LINE_ID = DOO_FULFILL_LINES_ALL.FULFILL_LINE_ID

Browse more Order Managementtables →

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.