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