X++ Confirm, Invoice and cancel purchase order
static void POConfirm(Args _args) { PurchTable pTable; PurchFormLetter purchFormLetter; AxPurchTable axPurchTable; select pTable where pTable.PurchId == "POnumber"; //Posting PO Confirmation //You cannot do invoice without doing PO confirm //purchTable = axPurchTable.purchTable(); purchFormLetter = PurchFormLetter::construct(DocumentStatus::PurchaseOrder); purchFormLetter.update(pTable, strFmt("%1", pTable.PurchId)); //Posting PO Invoice // purchFormLetter = PurchFormLetter::construct(DocumentStatus::Invoice); //purchFormLetter.update(pTable, strFmt("%1", pTable.PurchId)); } Cancel a PO static void cancelPO(Args _args) { PurchTable pTable; PurchCancel pCancel; ...