When documenting test or setup it is advantageous to show as many values in the status bar as possible (especially the AOS name and company accounts id and maybe date and time), to be able to show in screen dumps what environment you are using. Here is a quick little job for setting up ALL fields to be shown in the status bar. Dynamics AX 2009: static void Job130(Args _args) { #LOCALMACRO.FLAG_StatusLineHelpText (1 << 0) #ENDMACRO #LOCALMACRO.FLAG_StatuslineDatabase (1 << 1) #ENDMACRO #LOCALMACRO.FLAG_StatuslineWatch (1 << 2) #ENDMACRO #LOCALMACRO.FLAG_StatuslineNumLock (1 << 3) #ENDMACRO #LOCALMACRO.FLAG_StatuslineCapsLock (1 << 4) #ENDMACRO ...
My thoughts on Dynamics AX application development. I have been working as a consultant with Microsoft ERP-technology since 1994. Currently I work at Optimate A/S. My main focus is customization and application development. This blog is merely my place to put stuff that I want to remember. If anybody can benefit from reading this, that's great :0). Feel free to use any code snippets posted - but accept that you do this at your own risk!!!