sudo add-apt-repository ppa:alessandro-strada/ppa sudo apt update && sudo apt install google-drive-ocamlfuse google-drive-ocamlfuse mkdir ~/googledrive google-drive-ocamlfuse ~/googledrive after you finished, disconnect the google drive fusermount -u ~/google-drive Now this is the real thing, how to backup your googledrive to your linux pc I create a script to connect the google drive, sync it to my linux pc […]

Read More

Scenario user can Access to ALL MTL warehouse user can Access to ALL TJP warehouse exclude to “Finished Goods Warehouse TJP” warehouse MTL, TJP is Entity I put the XPO on the end of this article How to do it manually Goto Dynamics Ax, and Open AOT we will need, 1 Security Policy, 2 Tables, […]

Read More

septday septday, we got an error, we got crash app ax .. that was I thought when I see this errors Application: Ax32.exe Framework Version: v4.0.30319 Description: The Process was terminated due to an unhandled exception. Exception Info: System.Runtime.InteropServices.SEHException at <Module>.NavigationPaneHost.LoadMenuW(NavigationPaneHost*) at <Module>._wWinMainCRTStartup() why this is happen: It would happen when you have a developer […]

Read More

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
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
[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] 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

[python] prime number

  • Jan 03, 2019

this is prime number code in python print(“Membuat tampilan bilangan prima dari 1-100”) numBig = 100 banyak = 0 for a in range(2, numBig) : prima = 1 num = a for i in range(2,num): if(num % i) == 0: prima += 1 if prima < 2: print(num, “adalah bilangan prima”) banyak += 1 print(“dari”,numBig,”angka, […]

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