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
Question No : 2
You need to create a base enumeration to store the different values for types of services your company offers. You add several different service types to the enumeration. The first service type you create for the enumeration is "Cleaning". When you look in the database, what do you see in the ServiceType column that
represents the Cleaning service type?
A. 0
B. -1
C. A
D. Cleaning
Answer: D
Download
Exact Microsoft MB6-890 Exam Study Guide - Microsoft MB6-890 Exam Dumps
Question No : 3
You have an X++ class, which has the following code:
You need to call checkBOM() method of the BomHierarchyCheck class from a static method class. Which code should you write within the static method to achieve this goal?
A)
B)
C)
D)
A. Option A
B. Option B
C. Option C
D. Option D
Answer: D
Question No : 4
You want to have a form where you can display an image in a fast tab. Which type of subpattern should you apply to the fast tab?
A. Horizontal fields and Button group
B. Section tiles
C. Custom filters
D. Image preview
Answer: C
Microsoft
MB6-890 Exam Best Study Guide - MB6-890 Exam Questions Answers
Question No : 5
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
Question No : 6
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
Get Microsoft MB6-890 Exam Real Questions - Microsoft
MB6-890 Dumps Dumps4Download.us
Question No : 7
Your Microsoft Dynamics AX implementation is going live. Just before go-live, a sales executive realizes that the customers should not be allowed to remove certain records if they have one or more approved transactions. You need to perform additional validation when a record is removed from the table.What are two possible actions you can perform to achieve this goal? Each correct answer presents a complete solution.
A. Override delete() method on the table.
B. Override exist)() method on the table.
C. Override ValidateWrite() method on the table.
D. Override ValidateDelete() method on the table.
Answer: B,C
Question No : 8
You have several forms that use a table named Customers as a data source to display information about your customers.You need to maintain all of the fields that relate to a customer's address information. You also need the ability to add fields in the future, such as Address 2 or Address 3, and have them dynamically be shown on your forms once they are added to the table.What should you create on the table, so it can populate the correct fields on the final form?
A. a relationship to another table
B. a field group containing all of the "address related" fields
C. a table collection
D. an index to organize the data
Answer: C
Microsoft
MB6-890 Exam Study Material - Microsoft MB6-890 Exam Dumps Dumps4Download.us
Question No : 9
You are working in Visual Studio to manage development with Microsoft Dynamics AX.What are three capabilities of the Application Explorer? Each correct answer presents a complete solution.
A. Searching
B. Filtering
C. Server view
D. Model view
E. Project view
Answer: A,B,D
Question No : 10
You have a table named SalesTable that stores sales data. The SalesTable table has a field named Deadline, which is of type Date. You need to write X++ code to update the deadlines of all records in the SalesTable and set the value to today's date. Which code segment should you use?
A.
SalesTable Sales!able;
ttsBegin;
while select forUpdate SalesTable
{
SalesTable.Deadline - todayO;
SalesTable.updateO;
}
ttsCommit;
B.
SalesTable SalesTable;
ttsBegin; do
select firstonly forUpdate SalesTable where SalesTable.Deadline != todayO;
SalesTable.Deadline = today();
SalesTable.update();
}while(SalesTable.Redd);
ttsCommit;
C.
SalesTable SalesTable;
while select forUpdate SalesTable
{
SalesTable.Deadline » today();
SalesTable.update();
}
D.
SalesTable SalesTable;
ttsBegin;
while select SalesTable
{
SalesTable.Deadline = today();
SalesTabte.update();
}
ttsCommit;
Answer: A