AX / D365FO – Create a new Purpose for Address or COntact

To create a new purpose go to Organization administration > Global address book > Address and contact information purpose Click New To add a new purpose, click New, and then enter the name of the purpose and a brief description. Then select the Postal address or Contact information check box to specify whether the purpose is used for address records … Continue reading AX / D365FO – Create a new Purpose for Address or COntact

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

AX / D365FO – Error : “Connection is busy with results for another hstmt” while executing a stored procedure

With AX you have the ability to execute stored procedures directly from X++ code The benefit is greater speed in query execution and flexibility in building complex queries. See this post to learn more about the topic : https://dynamicsaxgyan.wordpress.com/2020/03/06/create-and-execute-stored-procedures-in-d365-fo-x/ I recently encountered this error in a procedure that executes a SQL stored procedure : "Connection … Continue reading AX / D365FO – Error : “Connection is busy with results for another hstmt” while executing a stored procedure

AX / D365FO – How to : “Serialization version mismatch detect, make sure the runtime dlls are in sync with the deployed metadata D365 For finance and operations”

I got this error after made some changes to a report Error : Serialization version mismatch detect, make sure the runtime dlls are in sync with the deployed metadata D365 For finance and operations To solve the issue just make a full rebuild of your custom model