Rivane

Accounting
made smart

ERP Use CasesTier 2Published May 1, 2026

Sales Order Pick, Pack, and Ship

Sales Order Pick, Pack, and Ship for US and UK finance teams: ERP requirements, controls, audit evidence, data model, APIs, state transitions, and implementation checks.

Outbound Fulfillment is where ERP discipline either begins or breaks.

Sales Order Pick, Pack, and Ship looks operational from far away. In a real finance team, it is a chain of assertions: the right actor started the work, the required records existed, the control policy was applied, the state change was preserved, and the outcome can be explained later without rebuilding the transaction from emails and spreadsheets.

The expected business outcome is specific: Order-to-ship cycle time reduced; pick accuracy ≥99.9%; inventory decremented at point of physical shipment with no manual ledger entry.

The control flow a finance team actually needs.

Workflow map showing control steps, exceptions, and evidence for this ERP process.Pick List Genera...Start conditionDirected Pick Pa...Required checksBin-Scan Confirm...Owner and SLAShort-Pick Workf...System updatePacking Station ...Exception handlingAudit packetEvidence trailException loopOutbound Fulfillment should preserve every override and rejection.
Workflow map for this ERP process, including exception handling and audit evidence.

Step 1

Pick List Generated Within 5 S Of Order...

Step 2

Directed Pick Path Minimizes Aisle Travel

Step 3

Bin-Scan Confirmation Mandatory

Step 4

Short-Pick Workflow

Step 5

Packing Station Carton Dimensioning And...

The ERP surface involved.

Module

Outbound Fulfillment

Actors

Warehouse Picker, Packer, Shipping Clerk, WMS Engine

Tier

Tier 2

Finance area

Inventory & Warehouse Management

Region lens

US and UK finance teams

Publication date

May 1, 2026

Pick list generated within 5 s of order release; directed pick path minimizes aisle travel; bin-scan confirmation mandatory; short-pick workflow (insufficient qty triggers backorder or substitute suggestion); packing station carton dimensioning and weight calculation; carrier integration (label generation via carrier API); shipment confirmation decrements inventory atomically; one delivery note per shipment; SO status updated: released → picking → packed → shipped; AR invoice auto-generated on shipment; reverse flow (un-ship) supported within same business day.

US and UK teams have different compliance hooks, but the same control problem.

US teams usually care about clean evidence for audit support, vendor records, payment controls, tax reporting, and management review. UK teams usually care about VAT-ready records, approval evidence, digital-record discipline, and traceable postings. The country-specific details differ, but the operating pattern is the same: the ERP needs controlled records, explicit ownership, defensible state changes, and evidence that survives beyond the person who completed the task.

The control matrix.

Control areaRequirementAcceptance proof
Control 1Pick list generated within 5 s of order releaseGiven a confirmed sales order with reserved inventory
Control 2directed pick path minimizes aisle travelwhen the order is released to picking and the picker scans each item and bin
Control 3bin-scan confirmation mandatorythen reserved qty decrements, a delivery note is created on shipment confirmation, on-hand decrements atomically, SO status updates to SHIPPED, and AR invoice is auto-generated
Control 4short-pick workflow (insufficient qty triggers backorder or substitute suggestionnegative) when picker scans an item not on the pick list then 422 ITEM_NOT_ON_PICK_LIST.
Control 5packing station carton dimensioning and weight calculationOrder-to-ship cycle time reduced; pick accuracy ≥99.9%; inventory decremented at point of physical shipment with no manual ledger entry.
Control 6carrier integration (label generation via carrier APIOrder-to-ship cycle time reduced; pick accuracy ≥99.9%; inventory decremented at point of physical shipment with no manual ledger entry.

Audit evidence is a chain, not a folder.

Evidence layerWhat should be preserved
Business eventA confirmed sales order releases a pick list to the WMS, directed to the picker's device with bin locations in travel-optimized sequence. The picker scans each item and bin to confirm, decrementing reserved quantities. Items are consolidated at a packing station where the packer verifies quantities, selects carton size, and prints a packing slip. The shipping clerk assigns a carrier and prints the shipping label; on shipment confirmation, on-hand quantity is decremented, a delivery note is created, and the SO is updated to shipped status triggering AR invoice generation.
Control rulesPick list generated within 5 s of order release; directed pick path minimizes aisle travel; bin-scan confirmation mandatory; short-pick workflow (insufficient qty triggers backorder or substitute suggestion); packing station carton dimensioning and weight calculation; carrier integration (label generation via carrier API); shipment confirmation decrements inventory atomically; one delivery note per shipment; SO status updated: released → picking → packed → shipped; AR invoice auto-generated on shipment; reverse flow (un-ship) supported within same business day.
Acceptance proofGiven a confirmed sales order with reserved inventory; when the order is released to picking and the picker scans each item and bin; then reserved qty decrements, a delivery note is created on shipment confirmation, on-hand decrements atomically, SO status updates to SHIPPED, and AR invoice is auto-generated; (negative) when picker scans an item not on the pick list then 422 ITEM_NOT_ON_PICK_LIST.
Data record
pick_list { id: string, so_id: string, entity_id: string, assigned_to: string, status: enum(GENERATED,IN_PROGRESS,COMPLETED), generated_at: timestamp };
pick_line { pick_list_id, so_line_id, item_id, bin_id, qty_to_pick, qty_picked, lot_number?, serial_number? };
delivery_note { id: string, so_id: string, shipment_date: timestamp, carrier: string, tracking_number: string, status: enum(CREATED,SHIPPED,DELIVERED) };
(reference, product may differ).
System event
POST /v1/sales-orders/{id}/release-to-pick -> 201 { pick_list_id };
POST /v1/pick-lists/{id}/confirm-line { pick_line_id, scanned_bin, scanned_item, qty_picked } -> 200;
POST /v1/pick-lists/{id}/complete -> 200 { delivery_note_id };
POST /v1/delivery-notes/{id}/ship { carrier, tracking_number } -> 200 { invoice_id };
emits inventory.shipment_confirmed, ar.invoice_created events.
Lifecycle state
SO: CONFIRMED -> RELEASED -> PICKING -> PACKED -> SHIPPED;
pick list: GENERATED -> IN_PROGRESS -> COMPLETED;
guard: SHIPPED requires delivery note;
un-ship supported same business day reverting to PACKED.

The useful version of this workflow is not only fast. It is inspectable. A controller, auditor, or operator should be able to move from source event to system record to state transition to final business outcome without guessing.

Implementation contracts.

Reference data model

`pick_list` { id: string, so_id: string, entity_id: string, assigned_to: string, status: enum(GENERATED,IN_PROGRESS,COMPLETED), generated_at: timestamp }; `pick_line` { pick_list_id, so_line_id, item_id, bin_id, qty_to_pick, qty_picked, lot_number?, serial_number? }; `delivery_note` { id: string, so_id: string, shipment_date: timestamp, carrier: string, tracking_number: string, status: enum(CREATED,SHIPPED,DELIVERED) }; (reference, product may differ).

API and events

`POST /v1/sales-orders/{id}/release-to-pick` -> 201 { pick_list_id }; `POST /v1/pick-lists/{id}/confirm-line` { pick_line_id, scanned_bin, scanned_item, qty_picked } -> 200; `POST /v1/pick-lists/{id}/complete` -> 200 { delivery_note_id }; `POST /v1/delivery-notes/{id}/ship` { carrier, tracking_number } -> 200 { invoice_id }; emits `inventory.shipment_confirmed`, `ar.invoice_created` events.

State transitions

SO: `CONFIRMED -> RELEASED -> PICKING -> PACKED -> SHIPPED`; pick list: `GENERATED -> IN_PROGRESS -> COMPLETED`; guard: SHIPPED requires delivery note; un-ship supported same business day reverting to PACKED.

Common implementation traps.

Treating the workflow as data entry

If the ERP only stores the final record, the team loses the decision trail that explains how the record became valid.

Hiding exception logic

Exceptions need owners, reason codes, and time stamps. A vague pending state is not a control.

Posting without recovery design

Retries, duplicate submissions, and partial failures must be explicit so the system does not create inconsistent records.

Skipping evidence design

A workflow that cannot produce evidence on demand will eventually push finance teams back into manual screenshots and spreadsheets.

Where Rivane fits.

Rivane is built for finance workflows where automation must stay tied to source documents, approvals, state transitions, ledger impact, reporting, and audit evidence. Use this guide as a checklist for evaluating whether an ERP workflow is merely digitized or actually controlled.

References and source basis.

These sources provide the standards, regulatory, or government context around the flow. They are included so the guide is useful to finance operators, auditors, and implementation teams, not only buyers reading software copy.

Back to ERP use cases