How to Prevent Item from Being Committed?

Scenario User wants to prevent inventory items from being committed. Solution There may be instances when users want to limit items from being available for commitment. You can try: a) Default Commitment Option > Do Not Commit  There is a preference that you can set up where items, by default, will not be committed. This would… Continue reading How to Prevent Item from Being Committed?

Transform sales order to item fulfillment

For a sales order with committed line items can be converted by setting default value as inventory location. Kindly refer to the transform code below. let trecord = record.transform({ fromType: “salesorder”, fromId: salesOrderId, toType: “itemfulfillment”, defaultValues: { ‘inventorylocation’: locationInternalId } }); If the sales order is uncommitted and the feature “Allow uncommitted” is enabled in… Continue reading Transform sales order to item fulfillment