this is tutorial how to scale up storage linux vm on windows hyperv check linux vm partition status shutdown the Linux VM Resize the VM Virtual Hard Disk turn on the VM to this script: sudo parted -l to init the partition, run sudo cfdisk choose /dev/sda2 choose resize enter > write > yes > […]

Read More

we got error while confirm purchase order Function AccountingEventProcessor.createAccountingEvent has been incorrectly called this error occured because the accounting distribution raised an error calculation solution: edit the purchase order select the purchase line select financials > accounting > distribute amounts click reset button, and try to confirm again, if this not work, click correct and […]

Read More
installing suitecrm

installing suitecrm

  • Aug 19, 2019

So, im going to start a new project, that is installing suitecrm on my server the goal is, I will use suitecrm to integrate data with my ax data so lets begin first, I need ubuntu server, luckly, got version 18.04 lts ready to install installing ubuntu and packages after done installing, type this command […]

Read More

error A table, Extended Data Type, Base Enum or class called xxx already exists. Import of Table aborted. solve: clear auc and KTI clear cache all in AOT

Read More

we using Hyper-V in failover clustering to operate our operation server suddenly after restart some of our VM, the VM cannot be reboot the status vm is saved solution: delete saved state on this vm, and try to start again

Read More

we do have 2 active directory domain controller server each server replicate every days, but suddenly it stops working the error shows here: effects: because we’re use both server to access remote desktop apps, the users setting will not synchronize, solution: install active directory module for windows powershell run this shell as administrator type this […]

Read More
[ax2012] inventory closing or recalc

Cara melakukan inventory closing atau recalculation untuk item tertentu Inventory Management > Periodic > Closing and adjustment Pilih recalculation Isikan period codenya, recalc sampai tanggal yang diinginkan, specification pilih item number, lalu tekan tombol select untuk memfilter item apa saja yang akan di recalc Lalu tekan ok Untuk melihat hasil jurnal closingnya, bisa di cek […]

Read More

How to integrate c# projects into dynamics ax 2012 i put the tutorial on the youtube links here for the source code AxRTCSharp

Read More

[python] fibonacci number

  • Jan 03, 2019

this is fibonacci number in python n = 10 print(“membuat bilangan fibionaci”, n) a = 0 b = 1 c = 0 print(b) for i in range(0, n): c = a + b print(c) a = b b = c

Read More

[python] bilangan pascal

  • Jan 03, 2019

pascal triangle number in python def factorial(n): k = 1 for i in range(1,n+1): k *= i return k output = “” n = 10 print(“Bilangan pascal”,n,”baris”) for i in range(0,n): output = “” for j in range(i): output += str(int(factorial(i) / (factorial(j) * factorial(i-j)))) + ” ” output += “1” print(output)

Read More

Deprecated: mb_convert_encoding(): Handling HTML entities via mbstring is deprecated; use htmlspecialchars, htmlentities, or mb_encode_numericentity/mb_decode_numericentity instead in /var/www/project/axhelper.erakarta.com/wp-content/themes/focus-magazine/functions.php on line 133