How long have you been using Microsoft Dynamics Ax?

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

Popular Posts

Translate

Bu Blogda Ara

7 Kasım 2013 Perşembe

17 Haziran 2013 Pazartesi

AX 2012 How to import a model file

Hi All,

In AX 2012 you can add your own model files to the development layer. By doing this you can seperate your work like projects and then install them to another workspace.

We will see how we can install a model file to the workspace.

It is important that object names are unique in model files. If you have error from conflict you can use -conflict push option this will delete the obect which is already on the application.

Go to start menu -> All programs -> Administrative tools -> Microsoft Dynamics AX Management Shell right click and select Run as Administrator.

Navigate to the folder that holds model file.

Run this commond : Install-AXModel -File Filename.axmodel

Hope it helps.

12 Haziran 2013 Çarşamba

AX 2012 de boyutlarının listelenmesi

Merhaba,

AX 2012 ile değişen boyut yapısı ile birlikte boyutlarını listelemek için kullandığımız eski yöntemlerde rafa kalktı.

Yeni boyut yapısı ile yaratılmış bir hareketin boyut bilgilerini listelemek istediğimizde aşağıdaki örnek kodu kullanabiliriz.

VendTrans                         vendTrans;
DimensionAttributeValueSetStorage dimStorage;
Counter i;
select firstOnly vendTrans;
dimStorage = DimensionAttributeValueSetStorage::find(vendTrans.DefaultDimension);
 
for (i=1 ; i<= dimStorage.elements() ; i++)
{
        info(strFmt("%1 = %2", DimensionAttribute::find(dimStorage.getAttributeByIndex(i)).Name,dimStorage.getDisplayValueByIndex(i)));
}

Bol AX lı günler.

18 Nisan 2013 Perşembe

Deploy all SSRS reports by one command

Hi All,

If you configure and set all parameters correct you can publis all SSRS reports by using ManagementShell.

If you cannot find your AX ManagementShell just check if you installed Management utilities.

After you opened the Shell just use this command   Publish-AXReport -ReportName *

* stands for all reports you can filter SSRS reports by name.

Hope it helps,

Have a nice AXing.

3 Nisan 2013 Çarşamba

AX2012 R2 Kullanılıyor/Ax2012 R2 is being used


Ax2012 R2 artık kullanılıyor. Kullanım anlamında R1 ile çok farklılık görünmemek ile birlikte artık boyut tanımlamaları genel muhasebe tanımları üzerinden yapılıyor.

Now release R2 is being used. At first sight it seems there is no difference on user forms. But dimension setup selections are defined on general ledger form.


Ax2012 ile ilgili farklar dökümanı aşağıdaki linkten indirilebilir.

You can find the link that includes differences

http://www.microsoft.com/en-us/download/confirmation.aspx?id=7225

TTK Uyumluluk Paketi Ax2009

Ax2009 için TTK uyumluluk paketinin sonuncusu da yayınlandı. Microosft'un sayfalarından indirilebilir ve kullanılabilir.

AX2012 Muhasebe Boyutlarını Kullanma/Ax2012 To Use LedgerDimensions

Ax2012'de eğer bir hesap üzerinde belirli boyutların kullanıcı seçili ise ve parametrelerden tanımlanması talep edilen boyutlardan fazlası gönderiliyor ise Axapta bu konuda gönderilen boyutlardan ihtiyaç duyduğu boyutları seçebiliyor. Yani sadece DefaultDimension'un kullanılması ya da kod ile gönderilmesi yeterli olacaktır.


In Ax2012, if various dimensions are sent from parameters or by code to and account but spesific dimensions are selected on an account, Ax2012 can handle selecting the dimensions that the account needed. So just to use DefaultDimenson is enough for handling the dimension structure.

2 Nisan 2013 Salı

Boyutlar AX2012/LedgerDimensions AX2012

Axapta 2012 boyutları

Artık Ax2012'de sınırsız olarak boyut tanımlaması yaparak hesaba atanmasını yapabilirsiniz. Bu yenilik oldukça işe yarıyor. Fakat analizlerde dikkat edilmesi gereken bir husus var. Bir hesap ya da hesap grubu için    yalnızca 10 adet boyut seçimine izin veriliyor.


Axapta 2012 Ledger Dimensions

Now in Ax2012 you can create ledger dimensions limitless. It really works. Bu you have to pay attension during analyses that you can select just 10 dimensions per an account or an account group.


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.

30 Ocak 2013 Çarşamba

AX 2012 development workspace freezes : Client consumes memory until crash

Hi All,

First of all this situation occurs if you have HP laptop and if you installed security tools from HP official site.

If you are having the same error when you open the development workspace and then click anywhere on development workspace and instantly client freezes and not respond until "out of memory " error.

You just need to open this folder : C:\Program Files (x86)\Hewlett-Packard\HP ProtectTools Security Manager\Bin\ and then rename the DpFbView.dll  to anything.

Restart your computer that is it.

Hope it helps to resolve this freeze problem.

Have a nice coding,

Alper.

17 Ocak 2013 Perşembe

Pack / Unpack Form Query

Hi All,

When we need to restore previous query ranges after executeQuery() we can use this code example below.


Container con;
con = InventSum_qr.query().pack();
InventSum_q =  new Query(con);
InventSum_ds.executeQuery();

Have a nice coding.