Proper study guides for Updated Microsoft Microsoft Dynamics AX Development Introduction certified begins with Microsoft mb6 890 dumps preparation products which designed to deliver the Breathing mb6 890 dumps questions by making you pass the mb6 890 dumps test at your first time. Try the free mb6 890 pdf demo right now.
Q21. You need to delete multiple records from the CustTrans table that are not approved. Code execution efficiency is a factor since the table will contain millions of records. Additionally, the CustTrans table does not have any overridden methods.
Which X++ code segment should you use to achieve this goal?
A. delete from CustTrans where CustTrans.Approved ==NoYes :: No;
B. select firstonly CustTrans where CustTrans.Approved==NoYes::No; CustTrans.delete();
C. while select CustTrans where CustTrans.Approved==NoYes::No
{
CustTrans.delete() ;
}
D. select CustTrans where CustTrans-Approved == NoYes::No; CustTrans.dodelete();
Answer: A
Q22. You need to demonstrate the benefits of using Extended Data Types (EDTs) to your project team. Which three points should you highlight? Each correct answer presents a complete solution.
A. They automatically update data.
B. They reduce rework.
C. They create dynamic filters.
D. They improve the readability of code.
E. Their properties can be inherited.
Answer: D,E
Q23. You want to store the Shipment Type of all orders in a table named ShipmentDetails.
The Shipment Type needs to be a field that stores values for "Freight", "Ground", or "Air". You also need to ensure that the text that is displayed to users on forms is localized for the
shipment types and that the values in the database are independent of the language the user is utilizing.
What should you do?
A. Create an integer field for Shipment Type on the ShipmentDetail table. Write business logic to convert the integer field to text on forms.
B. Create a base enum for Shipment Type with the different shipment types as choices. Use this base enum as a field on the ShipmentDetails table.
C. Create a string field for Shipment Type on the ShipmentDetails table.
D. create an Extended Data Type (EDT) for Shipment Type that extends from string. Use this EDT on the Shipments table.
Answer: A
Q24. You have a table named CustTable. which has the following three fields: AccountNum, Currency, and CustGroup. You need to wnte X++ code to insert a record into CustTable and set the values of the three fields as follows:
AccountNum = "5000- Currency = "USD" CustGroup="30"
Which two code segments can you use to achieve this goal? Each correct answer presents a complete solution.
A)
B)
D)
A. Option A
B. Option B
C. Option D
D. Option D
Answer: C,D
Q25. You are using Visual Studio to manage development with Microsoft Dynamics AX. You need to complete a project for use within the application. Which step must be performed?
A. best practice check
B. synchronization
C. build
D. validation
Answer: A
Q26. You are planning to give a presentation on Microsoft Dynamics AX to your development team. What should you state as an advantage of creating and using labels?
A. decreases database references
B. provides multi-language and translation support
C. reduces the number of pointers
D. duplicates the value throughout the database
Answer: D
Q27. You are working with a new programmer and need to explain which types of objects can be aa< Which three objects should you discuss? Each correct answer presents a complete solution.
A. References Rationale
B. Models Rationale
C. Project Rationale
D. Application Object Tree (AOT)
E. Elements Rationale
Answer: A,D,E
Q28. You have an array of integers with 10 elements.
You need to wnte X++ code to initialize this array with the values of 1 to 10, with the first element being 1, the second element 2, the last element 10.
Which code segment should you use to achieve this goal?
A)
B)
C)
D)
A. Option A
B. Option B
C. Option C
D. Option D
Answer: D
Q29. You are working in a Visual Studio development environment and want to call a class to update some records. Which type of menu item should you use?
A. Output
B. Action
C. Auto
D. Display
Answer: B