Skip to main content

Overviews of AXAPTA build numbers


Overviews of AX build numbers




Dynamics AX 2012 R2
Version
Kernel build
Application build
Comment
Link
Dynamics AX 2012 R2 CU1
6.2.1000.156
 6.2.1000.156
 25 Feb 2013
Dynamics AX 2012 R2 (6.2) Hotfix
6.2.1000.xxx
6.2.1000.xxx

Dynamics AX 2012 R2 RTM
6.2.158.0
6.2.158.0


Dynamics AX 2012
Feature Pack
Kernel build
Application build
Solution build
Comment/Link
Dynamics AX 2012 FP1 (6.1) Hotfix
6.0.1108.xxx
6.0.1108.xxx
6.1.1108.xxx
Dynamics AX 2012 FP1 (6.1) RTM
6.0.947.862
6.0.947.280
6.0.1108.0
Version
Kernel build
Application build
Comment
Link
Dynamics AX 2012 CU5
TBD
 TBD

Cumulative Update 5 
Dynamics AX 2012 CU4
6.0.1108.2423
6.0.1108.2423

Dynamics AX 2012 CU3
6.0.1108.670
6.0.1108.670

Dynamics AX 2012 CU2
6.0.947.280
6.0.947.280

Dynamics AX 2012 CU1
6.0.947.61
6.0.947.61

Dynamics AX 2012 RTM Hotfix [new]
6.0.1108.xxx
6.0.1108.xxx
As of Feb 15th
Dynamics AX 2012 RTM Hotfix [old]
6.0.947.xxx
6.0.947.xxx
Until Feb 15th
Dynamics AX 2012 RTM
6.0.947.0
6.0.947.0


Dynamics AX 2009
Version
Kernel build
Application build
Link
Comment
Dynamics AX 2009 SP1 RU-8

Dynamics AX 2009 SP1 RU-7

Dynamics AX 2009 SP1 RU-6

Dynamics AX 2009 SP1 RU-5

Dynamics AX 2009 SP1 RU-4

Dynamics AX 2009 SP1 RU-3

Dynamics AX 2009 SP1 RU-2
5.0.1500.809
5.0.1500.809

Dynamics AX 2009 SP1 RU-1
5.0.1500.358
5.0.1500.358

Dynamics AX 2009 SP1 Hotfix [New]
5.0.1600.xxx
5.0.1600.xxx
As of April 18th
Dynamics AX 2009 SP1 Hotfix [Old]
5.0.1500.xxx
5.0.1500.xxx
Until April 18th
Dynamics AX 2009 SP1
5.0.1000.52
5.0.1000.52

Dynamics AX 2009 RTM RU-6
5.0.593.1429
5.0.593.1429

Dynamics AX 2009 RTM RU-5
5.0.593.1287
5.0.593.1287

Dynamics AX 2009 RTM RU-4
5.0.593.1084
5.0.593.1084

Dynamics AX 2009 RTM RU-3
5.0.593.827
5.0.593.827

Dynamics AX 2009 RTM RU-2
5.0.593.662
5.0.593.662

Dynamics AX 2009 RTM RU-1
5.0.593.439
5.0.593.439

Dynamics AX 2009 RTM Hotfix
5.0.593.xxx
5.0.593.xxx

Dynamics AX 2009 RTM
5.0.593.0
5.0.593.0


Dynamics AX 4.0
Version
Kernel build
Application build
Link
Comment
Latest SP2 Kernel Build
4.0.2503.1610


Published AX 4.0 Hotfixes




Comments

Popular posts from this blog

Using File path on a form getting Error in Axapta

Hi Folks, After a long time am coming  back to posting few new things here for AX Developer... When we want to select the file path in form level. Normally what we will do create one EDT and extends with filepath (EDT), but that time when you are trying to select the path we will get error like stack-trace/Error message .Don’t worry there is no problem with your ax application. Simple we need to provide the method to the form like filepathLookUpTitle (). Below method we need to add it into form level methods, i.e. str filePathLookupTitle() {     return "Select document folder"; } Thanks Happy Daxing....

How to add Filter functionality to Display method in dynamics AXAPTA

Hi Friends, Normally filters will work only in table fields but we can't do filters to display method. This below code will work for filters to display method also. Step 1: Go to the form design right click on particular control properties Auto Declaration No to Yes. Step 2: Override the context() method on the display method  . public void context() {     int             selectedMenu;     formrun         fr;     Args            ag;     Name            strtext;     querybuilddataSource qb1;     queryrun    qr;     query       q;     PopupMenu menu = new PopupMenu(element.hWnd());     int a = menu.insertItem('Filter By Field');     int b = menu.insertItem('Filter By Selection');     i...

Remove the characters from string and convert to date to str in Axapta

Hi Folks, strRem and date2str Below job are to explain about how remove the characters from date and time in axapta static void Job131(Args _args) {     str st;     ;     st = strRem(date2str(today(),213,2,0,2,0,4)+time2str(timenow(),                       TimeSeparator::Space,TimeFormat::Auto)," ");     info(st); } Normally date and time will display like 09/25/2013 07:14:30 Am By using date2str it will convert the date to str and again remove the character also . O/P:09252013071430am Thanks Happy Daxing...