Posts

Showing posts from February, 2026

Step by Step Guide to Deploy a Local VHD of D365FO

 https://alexdmeyer.com/2023/07/05/step-by-step-guide-to-deploy-a-local-vhd-of-d365fo/

number to text arabic

 [ExtensionOf(classStr(Global))] final static class Global_BI_KSA_EInvoice_D365Integration_Extension {     static TempStr numeralsToTxt_AR(real _num)     {        // real    numOfPennies = decround(frac(_num), 2);        int numOfPennies = real2int(decround(frac(_num) * 100, 0));         real    test         = abs(_num - frac(_num));         str     zero;         str     comma;         str     and;         str     cent;         int     numOfTenths;         str 20  ones[19], tenths[9], hundreds, thousands, millions, billions, trillions;         int64   temp;         str 200  returntxt;       ...

How to create a new design for a Sales Invoice report in D365FO

 https://denistrunin.com/xpptools-reportsalesinvoice/