Tuesday 5 May 2015

Import - Export Of Model Store - Ax 2012

Hello Guys...!

Here I'm sharing steps for import and export a model store in ax 2012.

Step 1 :

Make sure the client configuration, in which environment you are going import / export model store.

Example : I'm exporting my development model store . So that should be active in Ax Client configuration.

Step 2 :

stop AOS

Step 3 :

On the Start menu, point to All Programs, point to Administrative Tools, and then click Microsoft Dynamics AX Management Shell.





 At the Windows PowerShell command prompt, PS C:\>, type the following command, and then press ENTER.

For Export
-----------------------

Export-AXModelStore -File <Filename> -Details
This command exports the model store to an .axmodelstore file.

Example :
Export-AXModelStore -File "C:\Rahul\R2ModelStore.axmodelstore" -Details



For Import
-----------------

Import-AXModelStore -File <Filename>

Example :

Import-AXModelStore -File "C:\DIXF\Rahul\2712\R2ModelStore.axmodelstore"






 
 
 


Press "Y" and Enter...


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