From July 9th till 13th we will be at #MSInspire. See you there!

Monthly Archives: March 2014


How to Fix the Error: Binding operation failed to allocate buffer space in Dynamics AX

20

Mar 2014

How to Fix the Error: Binding operation failed to allocate buffer space in Dynamics AX

Binding Operation Failed to Allocate Buffer Space in Dynamics AX?? When you work with QueryRun and Query Objects in Dynamics AX, chances are you will come across the following error: Binding Operation Failed To Allocate Buffer Space This error is generated when your QueryRun object causes the Application Object Server (AOS) to hit the buffer limit. But don’t worry, for there are ways to fix...

Read More


Dynamics AX 2012 Tips And Tricks : Calling MenuItem through Code in Dynamics AX 2012

14

Mar 2014

Dynamics AX 2012 Tips And Tricks : Calling MenuItem through Code in Dynamics AX 2012

Calling MenuItem through Code in Dynamics AX 2012 Tips and Tricks We often need to execute menu items from X+. Menu Items are represented by the MenuFunction class. Below is a code sample that depicts how to run Menu Items through code. MenuFunction menuFunction = new MenuFunction(menuitemdisplaystr(MENUITEM), MenuItemType::Display); Args args = new Args(); args.caller(element); args.record(DS); menuFunction.run(args); Of course the code above may be changed to...

Read More


How to Setup Number Sequences Using the Wizard in Dynamics AX 2012

10

Mar 2014

How to Setup Number Sequences Using the Wizard in Dynamics AX 2012

How to Setup Number Sequences Using the Wizard in Dynamics AX 2012 In my previous post we talked about the scope of various number sequences in Dynamics AX 2012. Now let’s look into how we can these setup number sequences using wizard support in Dynamics AX 2012. The wizard generates number sequence for all references, in all organizations for which number sequences are not yet...

Read More


Number Sequences in Dynamics AX 2012

06

Mar 2014

Number Sequences in Dynamics AX 2012

An Oveview of the Various Number Sequences in Dynamics AX 2012 A number sequence is a readable, unique identifier for a master data record or transaction. The behavior of a number sequence is similar to primary key in a relational database. But it has more advance features that we do not have in primary keys like custom format, scoping etc. A Reference is the record...

Read More