Posts

Showing posts with the label Canceling purchase order and sales order lines

Canceling purchase order and sales order lines

Canceling purchase order lines        PurchLine purchLine;        ttsbegin;        while select forupdate purchLine where purchLine.PurchId == 'PO-XXXXXX'        {            if (purchLine)            {                purchLine.RemainInventPhysical  = 0;                purchLine.RemainPurchPhysical   = 0;                purchLine.update();                              InventMovement::bufferSetRemainQty(purchLine);             }         }         ttscommit; Canceling sales order lines        SalesLine salesLine;        tt...