Microsoft Dynamics AX Technical Conference 2011, Nice

October 17, 2011 No comment

Last week I received my confirmation for the Microsoft Dynamics Ax Technical Conference in Nice.

The event is scheduled to be held from November 14 – 16 in NICE Acropolis, Nice, France. You can find more info on the event’s homepage.

I’ll keep you up-to-date :-)

Microsoft Dynamics Ax 2012 Unleashed (book)

April 26, 2011 2 comments

I couldn’t believe it:

On Amazon.com I found the first paperback concerning Ax 2012 ‘Microsoft Dynamics Ax 2012 Unleashed’. The book will be released Ocober/November this year. There is not much info availible at the moment, but if you’re intrested in pre-ordering go to Amazon.com

(more…)

Microsoft Dynamics Ax 2012 (6.0) – Béta

April 12, 2011 2 comments

Like most Ax developers I am looking forward to the Ax 2012 release in Q4 this year (in the US a bit earlier). Today Microsoft launched the Ax 2012 Béta and I can’t wait to try it. You can find the download on partner source (Hyper-V & ISO) and customer source (Hyper-V & ISO). Keep in mind that you need a valid PartnerSource and CustomerSource-account.

Extra info is available on TechNet.

Microsoft Dynamics Ax – Technical conference 2011 (Redmond)

August 7, 2010 2 comments

Microsoft is launching the next version of Ax next year. There will be a conference where partners can have a early look on the application. The conference is held on the Redmond campus from January 17 through January 20, 2011.

You can find more information regarding this conference on http://www.microsoft.com/dynamics/DynamicsAXtechnicalconference2011.

Batch job performance boost

April 22, 2010 No comment

Did you ever have trouble with the performance of your batch-job? Well maybe this small trick can shorten the time your batch runs.

The big idea: Try to split up your gigantic batch in smaller pieces. Launch a batchjob that produces many smaller batchjobs (tasks) that can handle a subset of the data you need to process. For example you can create a batch that creates a batch with sub-tasks for each company.

How do you plan a batch from code?

1
2
3
4
5
6
7
8
9
10
11
12
BatchHeader batHeader;
BatchInfo batInfo;
TstRunBase rbbTask;
;
rbbTask = TstMyBatch::construct();
batInfo = rbbTask.batchInfo();
batInfo.parmCaption("MyBatch");
batInfo.parmGroupId("");
batHeader = BatchHeader::construct();
batHeader.addTask(rbbTask);
batHeader.save();
info(batInfo.parmCaption());

You can download a quick example I made. This is a job you can schedule and it will produce a new Batch job with a task for each company when you don’t select a company while shedualing (Class_TstRunBase.xpo). I hope this can help you.

Schedule the batch:

The result:

Ax 6.0 Sneak Preview(s)

November 4, 2009 No comment

If you want a sneak preview into Microsoft Dynamics Ax 6.0 and if you want to know all about the new features, follow the MFP-blog!

« Previous Page