Desterilize API response and adding List of object into table X++
try { ttsbegin; { Microsoft.Dynamics.Ax.Xpp.List dataList = new Microsoft.Dynamics.Ax.Xpp.List(Microsoft.Dynamics.Ax.Xpp.Types::Record); Microsoft.Dynamics.Ax.Xpp.List itemList = new Microsoft.Dynamics.Ax.Xpp.List(Microsoft.Dynamics.Ax.Xpp.Types::Record); Microsoft.Dynamics.Ax.Xpp.ListIterator dataListIterator; Microsoft.Dynamics.Ax.Xpp.ListIterator itemListIterator; Microsoft.Dynamics.Ax.Xpp.ListIterator piovttIterator; BIAPISetup _apiSetup; select firstonly _apiSetup order by _apiSetup.RecId desc ; date requestDate; str requeststr; int numofdays; BIInventCountsContracrt _inventCountsContracrt= new BIInventCountsContracrt(); BIInventCountsData _inventCountsData= new BIInventCountsData(); BIInventCountItemData _inventCountItemData= new BIInventCountItemData(); BIBranchData _branchData= new BIBranchData(); BIInventCountPivotData _piovtData= new…
Create Sale Order using AIF service AX2012 X++
SalesSalesOrderService will be required to place sales order. it is predefined service in AX2012. you will just need to perform following steps. 1- Register Service (right click on service –>Add-In –>Register Service) and . 2- System Administration –> Inbound ports –>{Add new salesorder service} On c# create salesorder like this. 3- Create c# web service…
Create Purchase Order And Post Invoice via X++
Following is X++ code to create purchase order and post the invoice using PurchFormLetter class. static void CreatePOAndInvoice(Args _args) { PurchTable purchTable; PurchLine purchLine; VendTable vendTable = VendTable::find(“1005”); AxPurchTable axPurchTable; AxPurchLine axPurchLine; PurchFormLetter purchFormLetter; //update site and warehouse locations. vendTable.InventSiteId =’DC’; vendTable.InventLocation = ‘TW’;…