New Layers in Dynamics AX 2009
http://blogs.msdn.com/mfp/archive/2008/04/22/new-layers-in-dynamics-ax-2009.aspx
This blog is all about Dynamics AX and X++.Microsoft Dynamics Ax tips and tricks .
Thursday, October 30, 2008
Monday, October 27, 2008
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");
}
protected void putToDialog()
{
FormBuildCommandButtonControl commandButton;
;
super();
commandButton = dialog.dialogForm().control("OkButton");
commandButton.text("Done");
}
Saturday, April 19, 2008
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.
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
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.
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.
Subscribe to:
Posts (Atom)