Monday 5 January 2015

Import a Model By Using Axutil in Ax 2012

Hello Guys..!

Here i'm going show how to import  a model by using axutil Ax 2012

Use of Axutil :

-> We use Axutil to import, export,delete Ax Models.


How to Use :

-> open command prompt as a administrator 
-> Paste below code and press enter 
       cd Program Files\Microsoft Dynamics AX\60\ManagementUtilities

-> specify the model file location path in the command prompt  and press enter

Example :  

 axutil import /file:"c:\Program Files (x86)\Microsoft\Security Development Tool\SecurityDevelopmentTool.axmodel" 

->After that start AOS and do full application compilation and db synchronization.

Note :

-> When you are importing model by default this model will import into "MicrosoftDynamicsAx_Model"

-> If you have a specific database then use the below format to specify database

axutil import /file:"c:\Program Files (x86)\Microsoft\Security Development Tool\SecurityDevelopmentTool.axmodel" /db:"MicrosoftDynamicsAX_159_model"

-> Use these commands to specify specific database, server     db:<database> /s:<server>


@Rahul Talasila

No comments:

Post a Comment

Adding a newline into a string in C# and X++

Below is the sample code we can use for  adding a newline after every occurrence of "@" symbol in the string in C#   using System...