By now, you all must be aware that we are done with AOD files in Dynamics AX 2012. Model is the new deployment option for deploying AX objects on various installations. If you want to learn more about models, MFP has an excellent three part series on it which you can read here.In this post…
Måned: september 2012
Microsoft Dynamics Ax
Dynamics AX: Iterate XML file in X++/Axapta
by Bo Jensen •
XML file is a very common method of interaction when we are dealing with any kind of third party software. We can create the XML file in X++ and send it as parameters to the third party software. In case, when we receive the XML file as output from the external software, there can be…
Webdevelopment
Accessing SMTP Mail Settings defined in Web.Config File Programmatically – KaushaL.NET
by Bo Jensen •
I needed to read my SMTP email settings defined under system.net section in my web.config file. In order to use eNewsLetter and other SiteAdmin CMS modules that sending email notifications; you can setup your web.config to defind SMTP services settings.
Microsoft Dynamics Ax
Opening web pages from menu items in Dynamics AX | ERP Technician
by Bo Jensen •
This post will show you how to open a web page from a menu item in the standard Microsoft Dynamics AX client. It includes a brief code sample with a step-by-step explanation of how to set up the menu item. Enterprise Portal is not required for this scenario.
Microsoft Dynamics Ax
X++ can be compiled to CIL in AX 2012
by Bo Jensen •
In AX 2012 X++ code can be compiled into CIL and executed in CLR environment hosted on the application object server. This means X++ became almost a .NET language. Almost, because there are still some X++ artifacts that can only be interpreted, for example forms. However the vast majority of server-side code can be compiled…
Microsoft Dynamics Ax
IL Compiles Explained – AX Support – Site Home – MSDN Blogs
by Bo Jensen •
I’ve been asked several times what a Full or Incremental ILCompile is in AX 2012. If you have that same question here is somebackground information.
Microsoft Dynamics Ax
Resolving Compile Errors and Generating CIL is not Optional
by Bo Jensen •
All too often I visit clients or move in a code release to a production environment, only to find there are compile errors in the environment. This is totally unacceptable, and not just in a production environment. The existence of a compile error in a production environment is bad in itself, but it clearly shows…
Microsoft Dynamics Ax
Updating the caller Form/DataSource
by Bo Jensen •
If we need to notify events to the caller form we can try this pattern:
Microsoft Dynamics Ax, SQL Reporting Services
Create Quick first SSRS report in Dynamics AX 2012
by Bo Jensen •
In a Visual Studio reporting project for Microsoft Dynamics AX, you can define a report in a report model. A report consists of a collection of items, such as datasets, parameters, images, and report designs. A model can contain more than one report. Also, for this post I am assuming that all report services are…
Microsoft Dynamics Ax
How do I write a txt file using Microsoft Dynamics AX
by Bo Jensen •
You can use the TextIo X++ class or the CLRInterop. Here are 2 X++ jobs to demonstrate both approaches.
