scmc.ShippingConfirm
global with sharing class ShippingConfirm
This class is used to confirm SCM shipments.
Author
Financial Force, Inc.
Methods
confirm
global static void confirm(String shippingType, List<scmc__Inventory_Action_Queue__c> iaqList)
Confirm shipments based on a list of inventory action queue records.
Input Parameters
shippingType |
String |
The type of shipment to confirm. Valid values are 'Customer', 'Transfer', and 'Supplier'. |
iaqList |
List<scmc__Inventory_Action_Queue__c> |
A list of inventory action queue records. These records should all be of the same action - either 'Ship Material to Customer', 'Ship Material to Supplier', or 'Transfer Material to a Different Warehouse' and correspond to the shippingType parameter. |
Exceptions Thrown
ShippingException |
If there is an error during confirmation. Additional error information can be found in the Error Log. |
Return Value
Does not return a value.
confirm
global static void confirm(String shippingType, List<ID> shipIds)
Confirm shipments based on a list of SCM Shipper Ids.
Input Parameters
shippingType |
String |
The type of shipment to confirm. Valid values are 'Customer', 'Transfer', and 'Supplier'. |
shipIds |
List<ID> |
A list of SCM Shipper Ids. |
Exceptions Thrown
ShippingException |
If there is an error during confirmation or if the specified shipments are not valid for confirmation. Additional error information can be found in the Error Log. |
Return Value
Does not return a value.
|