How to Reset production order status as created in AX 2012

How to Reset production order status as created in AX : Here you go!: void resetStatusToCreated(ProdTable _prodTable){ProdMultiStatusDecrease  prodMultiStatusDecrease;ProdParmStatusDecrease   prodParmStatusDecrease;Args                     args = new Args();; if(_prodTable.ProdStatus > prodStatus::Created){args.record(_prodTable); select prodParmStatusDecrease where prodParmStatusDecrease.ProdId == _prodTable.ProdId; if(!prodParmStatusDecrease.RecId){prodParmStatusDecrease.clear();prodParmStatusDecrease.initFromProdTable(_prodTable);prodParmStatusDecrease.WantedStatus = ProdStatus::Created;prodParmStatusDecrease.ParmId = NumberSeq::newGetNum(CompanyInfo::numRefParmId()).num();prodParmStatusDecrease.insert();} prodMultiStatusDecrease = prodMultiStatusDecrease::construct(args);prodMultiStatusDecrease.initParmBuffer(prodParmStatusDecrease);prodMultiStatusDecrease.parmId(prodParmStatusDecrease.ParmId);prodMultiStatusDecrease.run();} }

Read More

Prerequisites for Dynamics AX 2012 R3 Microsoft Dynamics AX 2012 System Requirements

Prerequisites for Dynamics AX 2012 R3 Main Requirements for Microsoft Dynamics AX 2012 R3 System are: Supported server operating systems Windows Server 2012 R2 Standard Edition orDatacenter Edition Windows Server 2008 R2 Standard Edition Supported SQL: Microsoft SQL Server 2014, Standard Edition,SQL Server 2008 R2, Standard Edition SP2 Find details at: http://www.microsoft.com/en-in/download/details.aspx?id=11094

Read More

Error during installation of Enterprise Portal for AX 2012 R3 with SharePoint 2013

Error during installation of Enterprise Portal for AX 2012 R3 with  SharePoint 2013 Error: \”Microsoft SharePoint 2010 is not installed or running. Please run the prerequisite utility for more information. Operation is not valid due to the current state of the object.\” Solution: Check the log file, \”C:Program FilesMicrosoft Dynamics AX60Setup Logs\”. Setup did not…

Read More

What's the difference between importing Model Store and Model file?

What\’s the difference between importing Model Store versus Model file? A model file is just a part of the whole model store. Normally we often want to install just one model, not everything. We normally Export and Import the model file via Windows PowerShell (The best tool!) check for more details at: http://technet.microsoft.com/en-us/library/hh352314.aspx Import of Model Files…

Read More