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

[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

Error: Removing then adding a type with the same name can cause a name duplication error in the .NET Framework assembly that is generated from the AOT. A full regeneration of Microsoft .NET CIL is required to fix the issue The CIL generator found errors and could not save the new assembly.   Solution: Full […]

Read More

[ax 2012] tips and tricks

  • Sep 26, 2018

last update 20180926-1655 Tips and Tricks on AX: My Object in Forms is missing, right click on the forms -> personalize -> reset I suddenly hide FactBoxes File -> View -> FactBoxes Error While Compiling or Generate Incremental CIL Restart AOS, Generate Full CIL Error Dynamics AX AOS not started contact your administrator for start […]

Read More