Skip to Main Content

Developer Community

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

Working payload for Oracle SCM Ship Confirmations(Creating Pick Wave, Confirm Pick Slip)

Dear Community,

One of our Clients' requirements on the SCM Module is to automate the O2C flow automation(Ship Confirmation especially), i.e to create a Pick Wave and Confirm the Pick Slip on a sales order with minimum data, such that the initial line status will be moved from “Awaiting Shipping” to "Awaiting Billing" after performing Create Pick wave and Confirm Pick Slip.

I have tried the below API's, but the status was not moving to “Awaiting Billing”

Here is the sample payload I used for the 2 APIs

  • 1.API to create Pick Wave POST API: /fscmRestApi/resources/latest/pickWaves

Request Payload:

{
    "PickReleaseFlag": true,
    "SourceSystemName": "OPS",
    "ReleaseMode": "CONCURRENT",
    "CreateShipmentsFlag": true,
    "OrderNumber": "29",
    "Customer": "BPT1-Home Depot Corporate US",
    "ReleaseRule": "SO Pick Release Rule",
    "ShipFromOrganizationCode": "104",
    "AutomaticallyPackFlag": true,
    "AutoPickConfirmFlag": true,
    "IncludeAssignedLinesFlag": true
}
  • 2. API -PATCH: /fscmRestApi/resources/latest/pickWaves/7006 →7006 received from above REST API Response

Request Payload:

{
    "PickReleaseFlag": true,
    "ReleaseMode": "CONCURRENT",
    "SubmitOutboundShipmentRequestFlag":true
}

Or

Is there an alternative approach to achieve this use case?

Thanks and Best Regards,

Shashikumar

Comments
Post Details
Added on Jul 3 2025
0 comments
53 views