Order Management
Create a Sales Order in Oracle Fusion
Capture a sales order for a business unit and customer, and route it into orchestration.
Navigation
Navigator→Order Management→Order Management→Create Order
Steps
Illustrative wireframe — not an actual Oracle Fusion screen
Navigator › Order Management › Order Management › Create Order
Business Unit
Vision Operations
Customer
Search customer…
Order Type
Standard Sales Order
Order Lines+ Add Item
ItemUOMQtyUnit PriceAmount
AS54888Ea10$249.00$2,490.00
Pricing Summary
Subtotal$2,490.00
Tax$199.20
Total$2,689.20
Shipping
WarehouseM1 – Seattle
Ship Date—
MethodGround
CancelSaveSubmit
Real Oracle Fusion Screens
Captured from a live Fusion instance with demo/test data — not a mockup.
What Happens Technically?
Sales Order → DOO_HEADERS_ALL → DOO_LINES_ALL → DOO_FULFILL_LINES_ALL → Orchestration
Related Technical Objects
Common Errors
- Order fails to submit when a required attribute (e.g. price list, warehouse) isn't defaulting — usually a setup gap on the order type or customer.
- Line stuck at scheduling when there's no supply or the requested warehouse isn't enabled for the item.
- Pricing shows zero or errors when no active price list is assigned to the business unit/customer combination.
Useful SQL
Find a sales order by number
SELECT header_id, order_number, business_unit_id, source_order_system FROM doo_headers_all WHERE order_number = :order_number;