Monday 5 January 2015

Ax 2012 R3 - CU8 Installation Document


Hello Guys,

Here i'm sharing document for how to install CU-8 in Ax 2012 R3

Important Notes:
Development work (ex. Enterprise Portal, SSRS) done in Visual Studio will now be with Microsoft Visual Studio 2013Note when going to CU8
      • Report Viewer 2012 runtime component is required
      • Visual Studio Tools (for 2010) will have to be uninstalled via AX setup.exe > Install               Microsoft Dynamics AX components > Remove components > under Developer tools           mark Visual Studio Tools
      • Install Visual Studio 2013 (Professional or higher)
      • When going through CU8 installer note the Visual Studio 2013 Dev Tools selection

click below link to download Ax 2012 R3 - CU 8 Installation Document:




Kernel Version After CU-8 Installation 
                      
                      Application Version: 6.3.1000.473



@Rahul Talasila 


AX2012 AXUTIL commands to Import,Export,Delete Models

Hello Guys..!

Here i'm sharing Axutil command to import, export, delete models.

// creating the Model in the Layer
AxUtil create /model:"TestModel" /Layer:CUS

// exporting the model to file
AxUtil export /model:"TestModel" /file:TestModel.axmodel

// importing the model from file
AxUtil import /file:TestModel.axmodel

// delete the model
AxUtil delete /model:"TestModel"

//delete the layer
AxUtil delete /layer:ISV

// if you have multiple instances running
//delete the layer from the database and AXserver.
Axutil delete /layer:ISV /db:<database> /s:<server>

Note: click the link for how to use axutil

http://talasilarahuldaxing.blogspot.ae/2015/01/import-model-by-using-axutil-in-ax-2012.html


@Rahul Talasila

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

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...