calculate total sales order or sales quotation amount / discounts / tax etc., through code( X++ ) in AX
Now, this can be achieved through code using SalesTotals class. Check out the below code snippet.
Subscribe to be the first to learn about a new blog post. Sign up today!
Now, this can be achieved through code using SalesTotals class. Check out the below code snippet.
Hi All, This is Gayathri and I would like to take the privilege to start my first blog post with the differences between various AX versions. I have divided these differences into 9 major sections and posted them into 3 different posts. I hope these 3 posts will help the AX newbies and for the…
Hi Folks, For some clients, you would require to encrypt some phrases or words like passwords. For this, we can use cryptography class(CryptoAPI) which would allow us to encrypt/decrypt the phrases. The following example explains about the CryptoAPI class. CryptoApi cryptoApi; Container cont,cont1; ContainerClass cc; ; /* Salt is like a…
If you want to get all the error messages in the infolog in a desired language then just put this small code snippet and run it in a job. infolog.language(LanguageId); then whole UI of AX Client will be changed to the desired language and we will get the error messages into the infolog in that…
Hi Folks, I am honored to have been listed in this year’s(2012) Top 100 Most Influential people in Microsoft Dynamics conducted by DynamicsWorld.co.uk. For this year, I am ranked 77 in the Top 100 most influential people in Microsoft Dynamics in the world and ranked 6 in the Top 10 most influential people in Microsoft Dynamics…
Hi Folks, In AX, using SysMailer class we can compose a mail and send it through code in AX but if we would like to populate the outlook client by creating a mail item then attaching a report and also attaching the sender’s email address as well as subject to it then here is the…
Hi Folks, I have seen that most of the developers face the problem in displaying the Page footer only in the last page of the report. Epilog is printed just after the page footer on the last page in a report. So, this is printed in a separate page. But to print in the last…