X++ Blog
Microsoft Dynamics AX Experts
Microsoft Dynamics AX Experts
about 1 year ago - 4 comments
In this post I will review the different types of dialog boxes that can be used within the AX system. There are many scenarios where you want to prompt a message or dialog box to the user. That could be achieved within the box class in the AOT. Here are some example of the common
about 1 year ago - No comments
the strFmt() function is used for formatting string values within a specific sentence or structure. The first parameter is the format of the result string, with percent sign and the number of the argument to be placed in that position. The next parameters are the actual arguments. For example, this line: strFmt("%1 and %2
about 1 year ago - 1 comment
The AsciiIo object can be used to read and write text files within the AX runtime environment. It returns a container with the data in each line in the text file. That could be useful if you are reading a CSV file. In the following example I convert the container into text string and print
about 1 year ago - 4 comments
The global function curUserId() will return the current user id which is running the code. In order to get his email address and other information, we need to search him in SysUserInfo table. select Email from SysUserInfo where SysUserInfo.Id == curUserId(); In order to get his full name, we need to search
about 1 year ago - 2 comments
Sending E-mail messages from Microsoft Dynamics AX could be a bit tricky. As I mentioned in a following blog post, the most recommended way to do so is by using the standard mail mechanism built in the system.The Email sending status form (based on table SysOutgoingEmailTable) and the E-mail distributor batch job (read more
Comments are closed.
about 1 year ago
Couldnt agree more with that, very attractive article