AX / D365FO – How to do an Inventory recalculation for on-hand Qty

Sometimes you may see some discrepancy in InventSum table for any item then you may need to recalculate inventsum for particular item. You can try in 2 different ways : With D365FO User Interface With X++ code With D365FO User Interface Go to System administration > Consistency check Choose : "Inventory management" Module Just do … Continue reading AX / D365FO – How to do an Inventory recalculation for on-hand Qty

AX / D365FO – Split string into Array

I have a text that which contains comma separated values and I want to insert values into an array. You can use strSplit() method to do this public void splitString(str _splitString) { List strlist = new List(Types::String); ListIterator iterator; str _Value; strlist = strSplit(_splitString,”,”); iterator = new ListIterator(strlist); while(iterator.more()) { _Value = iterator.value(); iterator.next(); } … Continue reading AX / D365FO – Split string into Array

AX / D365FO – Creating Email Body with Dynamic Table (with Docentric free edition)

With Docentric AX Free Edition you can: use an advanced HTML editor to format email bodies within D365FO, pick a placeholder from a list of available placeholders for the current email, if you need to create a dynamic email body. Read this article to learn how : https://ax.docentric.com/improved-email-templates-creating-email-body-dynamic-table/?toolbarclose=yes