S Shortlisted
Oracle Fusion Order Management · stuck order or shipment · cause and fix

Shipment is CONFIRMED, but the order/transfer order still shows Awaiting Fulfillment

The warehouse did its job, the truck left. But the paperwork train behind the truck has three cars: shipping must tell inventory, and inventory must tell orchestration. Your update is sitting in one of those cars, not lost, just not delivered.

Root cause

The shipping→inventory→orchestration interfaces haven't processed the confirmation yet (or errored quietly).

How to fix it
  1. Run “Manage Shipping Interfaces” for the shipment's org, this pushes the confirmation downstream
  2. Then check the inventory side: any rows stuck in Manage Pending Transactions? Clear their errors and reprocess
  3. Recheck the fulfillment line status after both, it usually flips within one run
  4. Still frozen → read the line's interface error (SQL below) before touching anything else
Where to go in Fusion
Diagnostic SQL

Where is the shipment line really?

select delivery_detail_id, released_status, oe_interfaced_flag, inv_interfaced_flag from wsh_delivery_details where source_header_number = '&order_number'

Read-only diagnostic queries. Substitute the bind values for your instance; run in a test environment first.

Oracle references

My Oracle Support document IDs for readers with access: MOS notes exist per variant, search the exact status pair. We do not reproduce their content.

Checked Order Management and Fulfillment troubleshooting for Oracle Fusion, rewritten in plain words from publicly known practice and reviewed by a working consultant. Checked against the current release, Jul 2026. Navigation and behavior vary by configuration; verify in your own instance and test before acting.

Solve it, then prevent it

This page covers one error. These help with the rest:

More Order Management and Fulfillment errors