aiotestking uk

MB6-890 Exam Questions - Online Test


MB6-890 Premium VCE File

Learn More 100% Pass Guarantee - Dumps Verified - Instant Download
150 Lectures, 20 Hours

Q1. You need to create menus in Microsoft Dynamics AX

In addition to the Menu hem type and Menu hem name, what are three other key property values? Each correct answer presents a complete solution.

A. Enum Type Parameter

B. Linked Permission Type

C. Configuration Key

D. Labels

E. Normal Image

Answer: A,B,C

Q2. 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

Q3. You want to have a form where you can display an image in a fast tab. Which type of sub- pattern should you apply to the fast tab?

A. Horizontal fields and Button group

B. Section tiles

C. Custom filters

D. Image preview

Answer: C

Q4. Which information does the Microsoft Dynamics AX development model contain?

A. the OLTP database

B. an element's metadata and source code

C. an element's metadata only

D. an elements source code only

Answer: D

Q5. 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

Q6. 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

Q7. You have an X+ + class that has the following code: public class CustAdvancelnvoiceJourDP

{

private void insertCustVendAdvanceInvoiceJourTmp()

{

// do work

}

public void processReport()

{

// call InsertCustVendAdvancelnvoiceJourTmp

}

}

You need to call insertCustVendAdvancelnvoiceJourTmpO from the processReport method on the current instance of the object Which piece of code should you write within the processReport method to achieve this goal?

A. CustiAdvancelnvoiceJourDP newObj = new CustAdvanceInvoiceDourDP(); newObj.insertCustVendAdvanceInvoiceDourTmp();

B. CustAdvancelnvoiceDourDP.insertCustVendAdvancelnvoiceJourTmp();

C. CustAdvancelnvoiceDourOP: :insertCustVendAdvanceInvoiceDourTmp( ) ;

D. this.insertCustVendAdvanceInvoice3ourTmp();

Answer: A

Q8. 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

Q9. You need to describe the current structure of Microsoft Dynamics AX security roles.

Which three statements are accurate regarding these roles? Each correct answer presents a complete solution.

A. Permissions can be edited from the Security Configuration form.

B. Roles are arranged by hierarchy.

C. Roles are segregated.

D. Roles are defined one time for all organizations.

E. Roles can be associated with human resource positions and automatically assigned.

Answer: B,C,D