MB6-890 Exam - Microsoft Dynamics AX Development Introduction

certleader.com

Q1. You want to see a list of all of the forms in the system, along with the current pattern type that is applied to them. What should you do?

A. Run the form statistics add-in.

B. Run the code comparison tool.

C. Run the form patterns report.

D. Run the help wiki.

Answer: D

Q2. You need to present best practices for creating and managing labels to the development team.

What are three accepted best practices for labels? Each correct answer presents a complete solution

A. Ensure that labels have correct translation.

B. Create new labels for each new version of an element

C. Create static labels and generate label files after the project is complete.

D. Use labels when programming for all external strings.

E. Use labels for every element or artifact.

Answer: A,B,C

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

Q4. You need to set up the standard properties pane for your development team.

Which two configurations can be used? Each correct answer presents a complete solution.

A. alphabetically by property

B. null value

C. category

D. alphabetically by value

Answer: A,C

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

Q6. You need to develop a new XDS policy for employees. You employees' expense records. Where should you apply the filter?

A. Constrained tables

B. Query

C. Policy group

D. Context string

Answer: D

Q7. You need to create a form with details from the master form style. This form needs to open in view mode with an Edit button so that it is editable.

Which property should you set at the form design level to achieve this behavior?

A. set Form.Design.Mode property to Edit' value

B. set Form.Design.ViewEditMode property to ‘View' value

C. set Form.Design.ViewEditMode property to ‘Edit' value

D. set Form.Design.ViewEditMode property to ‘Auto’Value

Answer: C

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

Q9. You are working in the Visual Studio development environment

You need to develop a simple list form. This form should let users add new records but should not let users edit existing records.

Which properties should you set to achieve this goal?

A. Set Form > Data Source > Property > AllowEdit to Yes & Set Form > Data Source > Property > AHowEditOnCreate to Yes

B. Set Form > Data Source > Property > AllowEdit to No & Set Form > Data Source > Property > AHowEditOnCreate to Yes

C. Set Form > Data Source > Property > AllowEdit to No & Set Form > Data Source > Property > AHowEditOnCreate to No

D. Set Form > Data Source > Property > AllowEdit to Yes & Set Form > Data Source > Property > AHowEditOnCreate to No

Answer: A

Q10. A relationship is defined between two tables named CustTable and CustGroup. Each record in CustTable references a record in CustGroup.

You need to set up delete actions to ensure that records in CustGroup can only be deleted if there are no CustTable records that reference or relate to the record.

Which values for the On Delete property for the relation should you specify?

A. None

B. Cascade + Restricted

C. Restricted

D. Cascade

Answer: D