Hello Community. I am working on a project to create shipment receipts through code and running into the error message “SO Error: Order RM 3034042 does not contain any items planned for receipt on '9/20/2024 12:00:00 AM'.” This only happens when calling the code, I can click the “Create Shipment Receipt” button from the front end without the same error. Below is how I am calling “CreateShipmentReceipt”. Any ideas?
orderEntry.Document.Current = orderEntry.Document.Search<SOOrder.orderNbr>(s.OrderNbr, s.OrderType);
orderEntry.Transactions.Current = s;
adapter = new PXAdapter(new PXView(orderEntry, false, orderEntry.Document.View.BqlSelect));
PXTrace.WriteInformation("Receipt 1.1: Checking if line needs receipt created");
if (s.ShippedQty != s.OrderQty)
{
PXTrace.WriteInformation("Receipt 1.2: Begin receipt line creation");
orderEntry.Document.Current.ShipDate = filter.TransactionDate;
orderEntry.CreateShipmentReceipt(adapter, filter.TransactionDate, s.SiteID);
orderEntry.Document.Current = orderEntry.Document.Search<SOOrder.orderNbr>(s.OrderNbr, s.OrderType);
shipNo = orderEntry.shipmentlist.Current.ShipmentNbr;
