How long have you been using Microsoft Dynamics Ax?

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

Popular Posts

Translate

Bu Blogda Ara

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.