Skip to main content

Posts

AX 2009 Installation & Configuration Question 57 to 100

Exam Name: AX 2009 Installation & Configuration Exam Type: Microsoft Exam Code: MB6-820 Total Questions: 100 Page 14 of 23 Question: 58 You work in an International company which is called Luxwet. And you're in charge of the network of your company. Configurations contain startup and tracing settings for the Application Object Server (AOS) , where is this configuration information stored? (choose more than one) A. In the user database. B. In the system database. C. In the Windows registry. D. In a configuration file. Answer: B, C C D Question: 59 You work in an International company which is called Luxwet. And you're in charge of the network of your company. Microsoft Dynamics AX 2009 is being setup to have multiple environments, for testing, development and production. How should the Application Object Servers (AOS) be configured? A. Each AOS should point to a different database but the same application file location. B. Each AOS should point to the sam

Frameworks in Microsoft Dynamics AX

Frameworks in Microsoft Dynamics AX  Runbase Framework  Batch Framework  Dialog Framework  Operation Progress Framework  NumberSequence Framework  SysLastValue Framework  AIF-Application Integration Framework  Wizard Framework  Infolog Framework Unit Test Framework

Code to Get all table id of axapta AOT

Try this code in job static void findTables(Args _args) { Dictionary dictionary; TableId tableId; tableName tableName; ; dictionary = new Dictionary(); tableId = dictionary.tableNext(0); tableName = dictionary.tableName(tableId); while (tableId) { info(strfmt("%1 - %2",int2str(tableId), tableName)); tableId = dictionary.tableNext(tableId); tableName = dictionary.tableName(tableId); } }

Code Upgrade in axapta

Code Upgrade The Code Upgrade tool is also found in the Add-ins menu. Where the Compare Object tool can be used to compare any type of object, the code upgrade tool is specialized for comparing methods. This tool is quite handy for comparing changes from an old to a new layer of a service pack or version upgrade.  Code upgrade will show a class that has been modified in several layers. You will see its methods listed in the left side. Methods modified in both the old layer and the new layer will be highlighted, i.e. if a method existing in the SYS layer of the old version has been modified in the new SYS layer. When you click on a method modified in more than one layer, Axapta will update the right window with a tab page representing each modified layer.  The first tab page, Workspace will default to show the highest layer. From Workspace you can edit the method. It is preferable to open the code in the editor using the Edit button. In the sub menu Suggestion, the merge buttons

Usage data in microsoft Dynamics axapta

Usage data in microsoft axapta The button Usage data shows stored settings for objects such as forms, reports and runable classes. When a user changes the layout of a form, changes the query of a form or enters values in a report dialog, the settings will the saved. The usage data is stored in the system table SysLastValue. Only one record exists per object per user, as only the value of the last execution is stored. If you want to see the usage data for all users, you can call the usage data form from Tools-> Development Tools-> Application Objects->Usage data. The Usage Data form shows the content of the system table SysLastValue for the current user, divided into tab pages for each type of object. The general tab page has a button to delete all content of SysLastValue for the current user. This is quite handy if  you are going to test your modifications, as you then can start out testing with the same settings as the application user will have the first time a form

Recycle Bin in MSD Axapta

Recycle Bin The AOT Recycle bin is located in the top menu under File->Open ->AOT Recycle Bin. The recycle bin can be used to recover objects like tables, extended data types or forms.Parts of an object, like fields of a table or methods of a form, cannot be recovered.  You can only recover deleted objects for the current session, as the recycle bin is emptied when the Axapta client is closed. The deleted objects are shown in a list sorted after the objects are deleted, with the last deleted object listed as the first. If an object with the same name has been deleted twice, the objects will appear two times in the list. Notice that if a table is deleted, the recovered table will not contain any data.