How long have you been using Microsoft Dynamics Ax?

Toplam Sayfa Görüntüleme Sayısı

Popular Posts

Translate

Bu Blogda Ara

25 Mart 2013 Pazartesi

How to delete specified layer on AX 2012

Hi All,

In AX 2012 we can delete layer by using command prompt.
First open command prompt then navigate to AOS folder which has the layer you want to delete.
User axUtil command and specify layer and db parameters.

For example below command deletes usr layer on MicrosoftDynamicsAX database.

C:\Program Files\Microsoft Dynamics AX\60\ManagementUtilities>axutil delete /layer:usr /db:MicrosoftDynamicsAX

Have a nice day.

21 Şubat 2013 Perşembe

Jump related record from Info

Hi All,

We use Info to inform our clients but when we want to jump to the related record we need to use SysInfoAction class.

Here is the example code :
info(
"Information want to  give ","",SysInfoAction_TableField::newBuffer(TableName::find(TablePrimaryKey))
);

Have a nice AXing.