Monday 5 January 2015

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

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