Posts

Showing posts from August, 2017

How to update PO Vendor Account

Job for updating the Vendor account and update PO  static void updatePO_VendorAccount(Args _args) {     PurchTable po;     PurchLine pl;     VendTable vT;     VendPackingSlipJour vendP;     PurchId poNum;     DialogField dpo;     VendAccount vendor;     DialogField dvendor;     Dialog d;     d = new Dialog();     d.caption("Choose a PO to update and the vendor account");     dpo = d.addField(extendedTypeStr(PurchId));     dvendor = d.addField(extendedTypeStr(VendAccount));     d.run();     poNum = dpo.value();     vendor = dvendor.value();     if(d.closedOk() && poNum && vendor && Box::yesNo(strFmt("You are about to update      PO: %1 to Vendor: %2. Do you wish to continue?", poNum, vendor), DialogButton::No)) { ...

Auto email for shipment tracking using X++ in ax2012R3

This summary is not available. Please click here to view the post.