Skip to main content

Posts

Microsoft Dynamics Ax 2012 R3 at Glance

Error 1068: The dependency service or group failed to start in Ax 2012

If you are getting error on starting Ax 2012 Server and Error code is  Error 1068: The dependency service or group failed to start in Ax 2012. Solutions: 1. Your Dependencies from Properties..Its RPC and Mssql server just check if other services are activated or not. 2. Right click on (MSSQLSERVER) services go to log on tab enter your new password then start (MSSQLSERVER) services then try starting your AX. It might work. 3,"Error 1068: The dependency service or group failed to start." The error says that there are some dependent services which need to be started before starting this service. Right click on the Dynamics Service and Properties - where you can see the dependencies. For Dynamics service the dependencies are - Remote Procedure Call and SQL server services.Check whether the status of the dependent services. 4.Did you change your machine password If yes then change all the password in services for dynamics ax as well as sql server then Check wh

Solution for Error of .Net framework 4 while installing AX 2102

If you are getting this  Error while installing AX 2102. 1.Uninstall 4.5 if its installed. Then install 4.0. 2.Go to command prompt and execute the command "net stop WuAuServ" to stop the service. Go to Run and type "%winddir%" . A folder gets opened. Rename "SOFTWARE DISTRIBUTION" folder with any desired name. Execute "net start WuAuServ" command in command prompt. It will solve the issue.

Database Synchronization Error in Ax 2012

If you are facing following error during Database Synchronization Error in Ax 2012. "Failed to create a session; confirm that the user has the proper privileges to log on to Microsoft Dynamics" Following solution is suggested from different sources  1.check the UserSessionService in inbound ports it should be in activate status. 2. You need to  update all records with networkalias field = 'administrator' in dbo.userinfo table   .I hope It will works. 2. You may find another demo data database and delete all 'administrator' account but my testing domain. Then you need to sync the db .

How to invisible formpart in Ax 2012

To invisible formpart in Ax 2012 you can try below code in Job. PartList partList; Counter partCnt; FormRun FormRun_part; NumberOf NoOfParts; super(); partList1 =new PartList(element); NoOfParts =partList1.partCount(); for (partCnt =1; partCnt <= NoOfParts; partCnt++) { FormRun_part =partList1.getPartById(partCnt); if (FormRun_part.name() ==formStr(YourFormName)) { FormRun_part.design().controlName("YourControlName").visible(false); } }

Invisible Factbox in Ax 2012

To make Invisible Factbox in Ax 2012 you can write code below in particular event as per your requirement. PartList       _partList  = new PartList(element); FormRun     _formRun; int                k; for (k = 1; k <= _partList.partCount(); k++) {       _formRun = _partList.getPartById(k);       _formRun.design().visible(false); }