Together we achieve

Posts Tagged ‘AX 2012’

AOT Resources in Image Options [AX 2012]

Till AX 2009 there was only one way for us to use the AOT resources for specifying on menus or menu items or buttons and that was using SysResources class and call while application start to set in various places. But with this small change in Ax 2012, MS has provided a very good small

Read more

Preventing client crashes when applying new event handlers

Almost every time I create a new pre- or post-event handler and try to use use it immediately on a new Event Handler Subscription, the AX client crashes.You can prevent these crashes by saving the event handler class and restoring it, before …

Read more

Solving Fill Utility errors on Microsoft Dynamics AX 2012 – Error executing code: Wrong argument types for comparison (another scenario)

Scenario:A user wishes to update the Item group for a released product.
They right-click on the Item group field and selects the Record Info menu item.
In the Record information form they click the Fill Utility button.
And get the following e…

Read more

Solving Fill Utility errors on Microsoft Dynamics AX 2012 – Error executing code: Wrong argument types for comparison

Scenario:A user wishes to update the Item group for a released product.
They right-click on the Item group field and selects the Record Info menu item.
In the Record information form they click the Fill Utility button.
We get the following er…

Read more

Calling the Update Operation on the SalesOrderService

The code is an example of how to call the update method on  sales order in AX 2012 using the SalesOrderService.
 
static void Main(string[] args)
        {
      &nbsp…

Read more

AX 2012 – Working with Record Templates

I hope everyone is off to a great new work week this fine Monday. I wanted to take the time, and highlight in AX 2012, a few things around Working with Record Templates.The screen shot you see above, is from the Released Products, extended details form…

Read more

AX 2012 – What Hotfixes & Models are Installed?

I trust everyone has had a productive and Dynamics filled week! A lot to cover from this week, with a big focus around the Microsoft Dynamics AX 2012 Feature Pack release. I’m still in the process of disecting the release and parts of it, so expect to …

Read more

Microsoft Dynamics AX 2012 Reporting extensions: Error System.Security.Permissions.EnvironmentPermission while running report

We run into issue that whenever we used a Microsoft Dynamics AX configuration file with a Reporting Services instance (as mentioned in here: http://technet.microsoft.com/en-us/library/hh389774.aspx) the following error was reported the first …

Read more

"Find as you type" in the AX 2012 X++ editor

As you may know the new X++ editor in AX 2012, is actually the Visual Studio editor.One of the sweet things that gives us, is the ability to do “Find as you type” searches in the code.Press CTRL + I once, and set of binoculars pops up. Now start typing…

Read more

Release products to the legal entities using X++

In this post, I would like to share X++ Code that will help to release products to the legal entities from product master.static void releaseProducts_Job(Args _args){    EcoResProduct ecoResProduct;    InventTable inventTa…

Read more