Thursday, May 24, 2012


Install and Configure Microsoft Dynamics AX

1.       Install the latest build of Microsoft Dynamics AX (Build 6.0.947.0)
2.       Start the Microsoft Dynamics AX client
3.       Confirm that the configuration keys controlling deleted objects are not enabled:
a.       Go to System Administration > Setup > Licensing > License Configuration
b.      Ensure Keep update objects 4.0 is not checked
c.       Ensure Keep update objects 5.0 is not checked
d.      Ensure Keep update objects 6.0 is not checked

4.       Select OK to close the Configuration form (and synchronize the database if necessary)
5.       Close the Microsoft Dynamics AX client

Restore from Backup

11.   Stop the AOS. Typically:
a.       Open a command prompt
b.      Enter net stop aos60$01
22.       Copy 6.0.947.0-contoso-SYS-RTM.bak to a local folder on the database server
33.       Open SQL Server Management Studio
44.       Right-click on Local > Databases > AXDB in the Object Explorer
55.       Select Tasks | Restore | Database… from the context menu
66.       Select From Device
77.       Click the ellipsis button
88.       Click the Add button
99.       Select the SQL Server backup of the CTP data (6.0.947.0-contoso-SYS-RTM.bak)
110.   Select OK
111.   Put a checkmark in the Restore column
112.   Switch to the Options page
113.   Select Overwrite the existing database


Start the AOS and Client

1.       Start the AOS. Typically:
a.       Open a command prompt
b.      Enter net start aos60$01
2.       Start the Microsoft Dynamics AX client

If you cannot log in, run a SQL command to update the USERINFO table to allow you to log in:
update userinfo
set
      networkdomain = 'YourDomain',
      networkalias = 'YourAlias',
      SID = 'YourSID'
where ID = 'Admin'
Also check your client configuration if you customized it. If you have a client configuration that includes a company that does not exist in the dataset, your client will not be able to connect to the AOS. Just remove the non-existent company from the client configuration to allow the client to connect.
3.       Go to System Administration > Setup > System > System service accounts
4.       Enter the account to use for the Business Connector proxy
5.       Close the Microsoft Dynamics AX client

Install Other Components

1.       Install Enterprise Portal and other services after restoring the Contoso data

No comments:

How to identify the user that was used to change an object from AOT in AX2012

Get the object name for which we need to track these (user and date&time) information's. Login to SQL Server Management Studio an...