Clear SQL Cache
When you do performance tests in Dynamics AX, you often want to clear the SQL cache so you can be sure that all data must be re-read from the disks.
If you want to clear the SQL cache, execute these 3 lines in a query window:
When you do performance tests in Dynamics AX, you often want to clear the SQL cache so you can be sure that all data must be re-read from the disks.
If you want to clear the SQL cache, execute these 3 lines in a query window:
If you want to open the Internet Explorer with a certain web page directly from X++ code, you can use the following statement:
infoLog.urlLookup(‘http://www.fatihdemirci.net’);
Thus, your browser will open and display the URL.
Merhaba
Bir formu önyüze getirmek bazen gerekebiliyor. Nasıl yapılacağını aşağıdaki metottan öğrenebilirsiniz.
Merhaba
Diyelim bir rapor yaptınız. Kaç kayıt olduğunu saymak istiyorsunuz SysQuery::countTotal(qr) işinizi görür. Bir kullanım örneği şöyle olabilir.
Arkadaşlarımın paylaştığı bir dokumandı. Çok Faydalı bilgiler mevcut. İşe yarar umarım.
Select Sum(AmountMst) from LedgerTrans
Group By LedgerTrans.Voucher, LedgerTrans.TransDate
koduna denk olan query alttaki gibi yazılabilir: