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

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.

Monday, March 31, 2008

Dynamic languages

Dynamic languages are one of the most interesting fields in programming, because it gives the developer more functionality & flexibility in developing applications.

The reasons of this are
The ability to modify the code in runtime, which saves the time of compiling, linking and building the application.You can imagine editing the code that runs on a robot walking on Mars from earth, this actually happened in NASA using LISP, and imagine how difficult this can be if you were using compiled languages.

Usually the dynamic language codes are less complicated than static language codes.
Usually dynamic languages support both Object Oriented and Functional Oriented models of programming.

Portability level is always higher in interpreted languages

Dynamic language syntax is usually easier and shorter if compared with equivalent codes in other compiled language

Monday, February 11, 2008

How to run AX after changing the network domain

Question : I have a system with a clean installation of AX , after I change the domain I am not able to run AX. So i have to reinstall the AX.

Answer :I solved it by editing the UserInfo table, replacing theNetwork user, Network domain and SID fields with values from a user in thenew domain.