13
Oct 2014HOW TO CREATE PURCHASE ORDER IN MICROSOFT DYNAMICS AX 2012
Hi Guys, In this post I’ll show you how to create purchase order in Microsoft Dynamics AX 2012 using X++ code (for those of you who aren’t familiar with it). First off lets create the job that will accomplish the Create Purchase Order in Microsoft Dynamics AX 2012 task. static void CreatePurchaseOrder(Args _args) { NumberSeq numberSeq; Purchtable tbl_purchtable; PurchLine tbl_purchLine; PurchFormLetter purchFormLetter; ; ttsbegin; //...
Read More