Run multiple jobs
I’ve noticed some people are visiting this blog looking for code that runs multiple jobs, so here’s a job that does just that. static void KlFor_runMultipleJobsContainer(Args _args) { #AOT...
View ArticleAxapta 3 menu in AX 2009
Are you one of those people who always minimize the content pane in AX 2009? Are you one of those people who don’t know what the breadcrumb on top of the AX screen is for? Do you already execute a job...
View ArticleRun AIF inbound and outbound manually
To have AIF import and export message, you have to have 4 batch tasks running (all about it here on TechNet). However, when developing, it is inefficient (and also tad tedious) to wait for those...
View ArticleRemove duplicate key entry from a table
Sometimes, you can’t synchronize a table because is contains duplicate records. This can occur when you change field lengths on a extended data type for example. I’ve seen people write huge SQL...
View ArticleAIF: The class method for the specified action %1 could not be found
When you get this error: The class method for the specified action %1 could not be found It probably means you have regenerated you classes using the AIF document wizard, or that you have imported the...
View ArticleSplit big text files in smaller ones in X++
Below is a job I found useful many times, so don’t want to loose it. Nothing special, but maybe you’ll find it useful too. It splits an input text file into smaller files. As there is one comment line...
View ArticleTrivial: by in group by is optional
Here is something I did not know: apparently, the ‘by’ in ‘group by’ is optional. The following job compiles just fine, and outputs the correct result: static void KlForGroupBy(Args _args) {...
View ArticleData migration: Importing the InventItemGroupForm Table
Hi everyone :-). I am tasked with doing data migration for a project that is about to go live. One of the things that have to be converted are item groups (InventItemGroup) and their linked dimensions...
View ArticleHow to print any file in Dynamics AX
Hi All! So you need to print some files from Dynamics AX? And it also has to work in batch? Below are 2 methods that will help you do just that. Printing text files using the copy method This was the...
View Article