码迷,mamicode.com
首页 > 其他好文 > 详细

The new concept 'Model' in AX 2012

时间:2016-04-06 09:29:02      阅读:123      评论:0      收藏:0      [点我收藏+]

标签:

There is a new concept ‘Model‘ in AX 2012 rather than AX 2009. It can be considered as a container to store all the AOT elements. If you have some experience in .NET programing, you can regard it as ‘Namespace‘. Yes, it is only a virtual container or space to store or organize the AOT elements (Objects). We can use it to export and import the project in AX 2012.

We can use the tool ‘AXUtil‘ to maintain all the models in AX. Locate in the path ‘%ProgramFiles%\Microsoft Dynamics AX\60\ManagementUtilities‘ by using the ‘Windows command prompt‘. The command ‘AXUtil /?‘ is to show the help.

技术分享

Open the AOT(Ctrl + D) in AX 2012, we can get the model infomation in the status bar.

技术分享

How to maintain model? Pls. refer to the below command.

//Create new model
AxUtil create /model:"New Model" /Layer:USR    

//Export model
AxUtil export /model:"New Model" /file:NewModel.axmodel

//Import model
AxUtil import /file:NewModel.axmodel

//Delete model
AxUtil delete /model:"New Model"

  

The new concept 'Model' in AX 2012

标签:

原文地址:http://www.cnblogs.com/Jinnchu/p/5357821.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!