Thursday, October 30, 2008

New Layers in Dynamics AX 2009

New Layers in Dynamics AX 2009
http://blogs.msdn.com/mfp/archive/2008/04/22/new-layers-in-dynamics-ax-2009.aspx

Monday, October 27, 2008

Microsoft Dynamics AX 4.0 data model overview
http://kashperuk.blogspot.com/2008/09/microsoft-dynamics-ax-40-data-model.html

http://kashperuk.net/DynamicsAX/AX40datamodel.doc

How to update the label and helptext of the RunBase OK and Cancel buttons

The code needs to be put after the super() call in the putToDialog() method.

protected void putToDialog()

{

FormBuildCommandButtonControl commandButton;

;

super();

commandButton = dialog.dialogForm().control("OkButton");

commandButton.text("Done");

}


Dynamics community

https://community.dynamics.com/ax/home.aspx

How to setup SSRS reporting

http://dynamic-ax.co.uk/DynamicsAXGuideToSetupSSRS.aspx

Saturday, April 19, 2008

CFA From Pakistan

CFA From Pakistan

http://www.ssuet.edu.pk/cep/cma_cfm.htm

Wednesday, April 16, 2008

What are ADO files

What are ADO files ?

ADO stands for Application Data Object and holds the application code for a
layer. You have an ADO file for each layer you have modified in your system.
Per defaul it is locaed in C:\program files\Microsoft Dynamics
AX\40\Application\Standard . There will be at least a axSYS.aod and an
axSYP.aod . Where the axSYS.aod is the SYS layer and axSYP.aod the SYS-Patch
(SYP) layer.