Skip to main content

Notifications

Announcements

No record found.

Community site session details

Community site session details

Session Id :

How to Export and Import Models in D365 FO

Vishals786 Profile Picture Vishals786


 Once of the most common requirements before moving the code between multiple environments is to take the model backup from the source environment and restore the same in the destination environment.


Here's how we can achieve that in few simple steps mentioned below : - 


1) Open Command Prompt as Administrator


2) Go to the path C:\AOSService\PackagesLocalDirectory\bin


3) For Exporting the model type the below command : - 


ModelUtil.exe -export -metadatastorepath=k:\aosservice\packageslocaldirectory -modelname="MyCustomModel" -outputpath=c:\NewFolder


Note : - Output path is the desired path of the user where the file has to be exported


The Above command will generate .axmodel file which can be used later to import the model in the D365 Model Metadata repository


For Importing the already exported model through .axmodel file use the below command in the same location C:\AOSService\PackagesLocalDirectory\bin  : -


ModelUtil.exe -import -metadatastorepath=k:\aosservice\packageslocaldirectory -file=c:\NewFolder\MyCustomModel.axmodel


4) Once the import is complete Open Visual Studio as Administrator


5) Go to Dynamics 365 Menu --> Model Management -->Refresh Models


That's it you will be able to access all the Model Elements in your future customizations


As a best practice its always recommended to do Full Build of the models after the import is completed.





This was originally posted here.

Comments

*This post is locked for comments