Skip to main content

Posts

Microsoft MB6-818: AX 2009 Financials paper question 121 to 183

#121. You are the system administrator of dynamics AX 2009. Your company uses Microsoft dynamics AX 2009. In your company, there's a standard v endor payment of Net 30 days. . Supossing that an order with a Net 30 days payment terms is re ceived on July 19, and the invoice is dated August 19; In Microsoft Dynamics AX 2009, what is the due date for the invoice? #1. The due date is June 19. #2. The due date is July 19. #3. The due date is August 19. #4. The due date is September19. Vote #1. no 0 #2. no 0 #3. yes 11 #4. no 5 #122. You are the system administrator of dynamic s AX 2009. In Microsoft Dynamics AX 2009, how many Customer groups must be set up to create customer records? #1. No Customer groups must be set up to create customer records. #2. One Customer groups must be set up to create customer records. #3. Two Customer groups must be set up to create customer records. #4. Three Customer groups must be set up to create customer records. Vote #1. yes 11 #2

Microsoft MB6-818: AX 2009 Financials paper question 61 to 90

#61. You are the system administrator of dynamics AX 2009. Your company uses Microsoft dynamics AX 2009. A new accountant posted a daily journal . Now the Controller intends to approve the daily journal. In order to achieve this, what setup is required in Microsoft Dynamics AX 2009? #1. Set permissions at the security level for each module for approval. #2. In Microsoft Dynamics AX 2009, approval of transactions cannot be set. #3. Select the Active option, assign a user group to the journal in the Journal names form. #4. Select the Active option for the user to approv e the transactions in the User form for automatic approval of the journal. Vote     #1.  no  0     #2.  no  0     #3.  yes  17     #4.  no  0  #62. You are the system administrator of dynamics AX 2009. In order to transfer the set of vendor payments through the payment proposal, what ar e the different proposal types available in Microsoft Dynamics AX 2009 to achieve this? #1. Per due date is available to

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