microsoft mb-500 online test

Microsoft Dynamics 365: Finance and Operations Apps Developer

What students need to know about the mb-500 exam

  • Total 142 Questions & Answers
  • Has case studies
  • Passing score: 700

Question 1 Topic 1, Case Study 1Case Study Question View Case

HOTSPOT
You need to create the new table for the vendor exclusion list.
What should you do? To answer, select the appropriate options in the answer area.
NOTE: Each correct selection is worth one point.
Hot Area:

Answer:

Explanation:
Scenario: You must develop a new solution to maintain a Vendor exclusion list for each customer and item combination. The
solution must meet the following requirements:
Isolate all new vendor exclusion codes as a new assembly by creating a table named VendExclusions.

Create an index for the table named PrimaryIdx that uses the following fields: CustAccount, ItemId, VendAccount.

Ensure that users can open the Vendor Exclusion list report from the customer master form. The list must display the

customer account, Item ID, and Vendor account fields.
Maintain referential integrity with other tables.

Box 1: a table extension for Vendors and relation for the Vendor exclusions
Box 2: RelationShip Type Reference: https://docs.microsoft.com/en-us/dynamics365/fin-ops-core/dev-itpro/data-
entities/develop-composite-data-entities

Discussions

Question 2 Topic 1, Case Study 1Case Study Question View Case

You need to apply a form pattern to the Vendor exclusion list.
Which pattern should you use?

  • A. Workspace
  • B. Simple List
  • C. List Page
  • D. List View
Answer:

C

Explanation:
A list page presents a set of data on a user interface that is optimized so that you can browse records, find the right record,
and then take an action upon that record. The list page lets the user search, filter, and sort the data. FactBoxes on the right
side of the grid show related data for the active record. Actions that are relevant to the record are located on the ActionPane
at the top of the page.
Scenario: You must develop a new solution to maintain a Vendor exclusion list for each customer and item combination. The
solution must meet the following requirements:
Isolate all new vendor exclusion codes as a new assembly by creating a table named VendExclusions.

Create an index for the table named PrimaryIdx that uses the following fields: CustAccount, ItemId, VendAccount.

Ensure that users can open the Vendor Exclusion list report from the customer master form. The list must display the

customer account, Item ID, and Vendor account fields.
Reference: https://docs.microsoft.com/en-us/dynamics365/fin-ops-core/dev-itpro/user-interface/list-page-form-pattern

Discussions

Question 3 Topic 1, Case Study 1Case Study Question View Case

You need to meet the requirements for the purchase order creation form.
What are two possible ways to achieve this goal? Each correct answer presents a complete solution.
NOTE: each correct selection is worth one point.

  • A. Create a class and add a form data source event handler method to the class.
  • B. In Application Explorer, create a table extension and implement validation.
  • C. In Application Explorer, create a form extension and implement validation.
  • D. Implement Chain of Command (CoC) and method wrapping by creating a form extension class.
Answer:

C D

Explanation:
Scenario:
Users must be presented with a warning message before a direct delivery purchase order is created for a vendor in
exclusion list.
You must implement validation to check whether a proposed direct delivery purchase order vendor is on the exclusion list for
the customer and product combination.

Discussions

Question 4 Topic 1, Case Study 1Case Study Question View Case

DRAG DROP
You need to develop, test, and deploy the Vendor Exclusion list solution.
What should you create? To answer, drag the appropriate objects to the correct actions. Each element may be used once,
more than once, or not at all. You may need to drag the split bar between panes or scroll to view content.
NOTE: Each correct selection is worth one point.
Select and Place:

Answer:

Explanation:
Box 1: package
An AOT package is a deployment and compilation unit of one or more models that can be applied to an environment. It
includes model metadata, binaries, reports and other associated resources. One or more AOT packages can be packaged
into a deployable package, which is the vehicle used for deployment of code (and customizations) on demo, sandbox, and
production environments.
Box 2: New model
Model - You configure your model to refer to two other models. This enables your model to reference metadata and code
elements that are in other packages.
Box 3: project
Project - You create a project and then associate your project to your new model. You add elements to your project, which
are also added to your model. Specifically, you add an extended data type (EDT). You also add a table that you populate
with fields and a method. Box 4: deployable package
Reference: https://docs.microsoft.com/en-us/dynamics365/fin-ops-core/dev-itpro/dev-tools/create-data-model-elements
Plan Architecture and Solution Design

Discussions

Question 5 Topic 2, Case Study 2Case Study Question View Case

You need to configure filtering for the Vendor Past Due Invoices form.
Which two filtering types can you use? Each correct answer presents a complete solution.
NOTE: Each correct selection is worth one point.

  • A. QuickFilter
  • B. Advanced Filter
  • C. Grid Column Filtering
  • D. Filter pane
Answer:

A C

Explanation:
A: QuickFilter: A framework-provided filtering mechanism that can appear above any list or grid, and that provides fast
single-column filtering.
C: Grid column filtering: The user can define filter conditions and perform single-column sorting by using a drop dialog that is
opened from the grid column header.
Scenario: You must create a batch job that runs on the last day of each month to update the current unpaid invoices with
changes in the minimum invoice amount. The job must meet the following requirements:
Allow users to specify vendors to include in the job.

Accept the following parameters: Vendor, DueDate.

Be callable by an Action menu item.

Use SysOperation Framework for all batch jobs.

Reference: https://docs.microsoft.com/en-us/dynamics365/fin-ops-core/dev-itpro/user-interface/filtering

Discussions

Question 6 Topic 2, Case Study 2Case Study Question View Case

You need to configure models for the project.
What are two possible ways to achieve the goal? Each correct answer presents a complete solution.
NOTE: Each correct selection is worth one point.

  • A. Create a new model that extends the existing FinanceExt model.
  • B. Overlay the existing FinanceExt model and populate the solution definition.
  • C. Extend the existing FinanceExt model and populate the project model definition.
  • D. Modify the DefaultModelForNewProject setting in the DefaultConfig.xml file and name the model FinanceExt.
Answer:

B C

Explanation:
All new and extended objects must be located in an existing model named FinanceExt. The creation of new models is not
permitted.

Discussions

Question 7 Topic 3, Case Study 3Case Study Question View Case

HOTSPOT
You need to implement the integration for the Vendor Exclusion List form.
What should you do? To answer, select the appropriate options in the answer area.
NOTE: Each correct selection is worth one point.
Hot Area:

Answer:

Explanation:
Box 1: Table extension
Isolate all new vendor exclusion codes as a new assembly by creating a table named VendExclusions. Implement the Excel
integration for the Vendor Exclusion List form.
The table extension object allows you to add additional fields or to change some properties on a table provided by the
Dynamics 365 Business Central service. In this way, you can add data to the same table and treat it as a single table.
Box 2: Unique key
Create an index for the table named PrimaryIdx that uses the following fields: CustAccount, ItemId, VendAccount.
Box 3: Build and synchronize the database.
A project property lets you specify that the synchronize operation for the database should be performed every time that you
build the project. This can be useful when youre making changes to the table structure for an application. Each time that you
build, you will know that the database is synchronized with the tables as they are defined in the project.
Reference: https://docs.microsoft.com/en-us/dynamics365/business-central/dev-itpro/developer/devenv-table-ext-object
https://docs.microsoft.com/en-us/dynamics365/fin-ops-core/dev-itpro/dev-tools/build-operations#synchronizing-the-database-
at-each-build

Discussions

Question 8 Topic 3, Case Study 3Case Study Question View Case

HOTSPOT
The system includes the following code: (Line numbers are included for reference only.)

You need to apply changes to address User2s issues.
For each of the following statements, select Yes if the statement is true. Otherwise, select No.
NOTE: Each correct selection is worth one point.
Hot Area:

Answer:

Explanation:
Scenario: User2 reports performance issues when they generate direct delivery purchase orders after current updates are
applied.
Also: You must implement validation to check whether a proposed direct delivery purchase order vendor is on the exclusion
list for the customer and product combination.
Box 1: No
The firstOnly keyword helps speed up the fetch by returning only the first row.
Box 2: No
Box 3: Yes
Box 4: Yes
RecId stands for Record Identifier. It is often called RowId (row identifier). It is a unique and incremental value stored with
each and every row of the table. In Microsoft Dynamics AX 2012 and Microsoft Dynamics 365 for Finance and Operations,
RecId is used as unique identifiers and to create relations between tables.
Another important point is the difference between RecId and Id. In simple words, RecId is generated by the kernel whereas
the Id is generated by the application itself.
RecId is used to find out the unique row in the table.
Reference: https://docs.microsoft.com/en-us/dynamics365/fin-ops-core/dev-itpro/dev-ref/xpp-data-query
https://community.dynamics.com/ax/b/nevoitechax/posts/what-is-recid-in-microsoft-dynamics-ax-365fo
Design and Develop AOT Elements

Discussions

Question 9 Topic 4, Case Study 4Case Study Question View Case

HOTSPOT
You need to modify the CashDisc form to meet the requirements.
Which objects should you use? To answer, select the appropriate options in the answer area.
NOTE: Each correct selection is worth one point.
Hot Area:

Answer:

Explanation:
Scenario: CashDisc form
You must extend the CashDisc form to add a new field named MinimumInvoiceAmount to the form. You must add a new
Extended Data Type to the extension model for the new field. The new field must be added above the discount method field.
The field must display 10 characters.
Box 1: extension
To add a new field to an existing table, you must first create a table extension.
Box 2: field
Box 3: field group
Box 4: data source
Often, the information that is stored in existing tables doesn't satisfy customer requirements. Therefore, additional tables
must be created, and data from those tables must be shown on pages.
You can add new data sources to existing forms through extension. Follow these steps.
1. In the extension model, create a form extension for the selected form.
2. Right-click the form extension, and then select New Data Source.
Reference: https://docs.microsoft.com/en-us/dynamics365/fin-ops-core/dev-itpro/extensibility/add-datasource

Discussions

Question 10 Topic 4, Case Study 4Case Study Question View Case

You need to modify the environment to meet the requirements for the Cash Discount Records report.
What should you do?

  • A. Create an extension of CashDisc in a new project and add the field to the extended table.
  • B. Create a new table named CashDiscExtension in the project.
  • C. Use Open Designer to add the field to the table.
  • D. Create an overlayer of CashDisc in a new project and add the field.
Answer:

A

Discussions
To page 2