Skip to main content

Posts

Showing posts with the label axapta development certification

x++ learning videos

x++ learning videos writing first program new features ssrs calling x++ code from report string in x++ string format how to schedule job in axapta

AX 2009 Development Introduction question 51 to 100

Question: 51 You work in an International company which is called DONEX. And you're in charge of the network of your company. Now one of your colleagues asks for your help. The code below creates a query on the item table. While he has no idea about how to obtain the same results using a while select statement. So what's your answer? 010045010067 Query = new query(); query.addDataSource(tableNum(InventTable)).addRange(fieldNum(InventTable,itemId)).value("12345"); A. while select InventTable ItemId <= "12345" B. while select InventTable ItemId != "12345" C. while select InventTable ItemId >= "12345" D. while select InventTable ItemId == "12345" Answer: D  Question: 52 You work in an International company which is called DONEX. And you're in charge of the network of your company. When manipulating the data source in a query, which system class is used to do this? A. Query_ds() B. QueryDataSource C

AX 2009 Development Introduction question 101 to 149

Question: 101 You work in an International company which is called DONEX. And you're in charge of the network of your company. Now one of your colleagues asks for your help. He has no idea about which function can be used to return a subset of a string variable. So what's your answer? A. subStr() B. strFind() C. subString() D. string::substring() Answer: A  Question: 102 You work in an International company which is called DONEX. And you're in charge of the network of your company. Which of the following sections of code include an example of a conditional statement? (choose more than one) A. custTable.Name = custTable.Name custTable.Name : newName; update(); B. if (custTable.RecId) { update(); } C. for ( I ; I < x ; i++) { clear(); .. insert(); } D. select custTable; recId) { .. update(); next custTable; } Answer: A,B  Question: 103 You work in an International company which is called DONEX. And you're in charge of the network of

AX 2009 Development Introduction question 1 to 50

Question: 1 You work in an International company which is called DONEX. And you're in charge of the network of your company. Now one of your colleagues asks for your help. He has no idea about IntelliMorph. So what's your answer? A. IntelliMorph is the tool you use to create a new label file. B. IntelliMoprh is the automatic layout generation of Forms, Reports and Menus. C. IntelliMorph is the Integrated Development Environment in Microsoft Dynamics AX. D. IntelliMorph is used when data from more than one table needs to be shown on a form or a report. Answer: B  Question: 2 You work in an International company which is called DONEX. And you're in charge of the network of your company. How can the StringSize property of a new extended data type, which is inherited from custAccount, be changed? A. By changing the StringSize on custAccount. B. By changing the StringSize on the new extended data type. C. The StringSize of extended data types CANNOT be changed.