Black Friday Special 70% Discount Offer - Ends in 0d 00h 00m 00s - Coupon code: best70

MB-500 Microsoft Dynamics 365: Finance and Operations Apps Developer Questions and Answers

Questions 4

You need to add new fields to the standard form and organize the grid to meet the requirements.

In which order should you perform the actions? To answer, move all actions from the list of actions to the answer area and arrange them in the correct order.

Options:

Buy Now
Questions 5

You are working on the data structures for the company’s implementation.

You need to ensure that the data from the source system is mapped into the new staging table and can be used for synchronous and asynchronous integrations.

Which three actions should you perform in sequence? To answer, move the appropriate actions from the list of actions to the answer area and arrange them in the correct order.

Options:

Buy Now
Questions 6

You need to create an extension of the table and perform a build and synchronize the newly extended table.

Which three actions should you perform in sequence? to answer, move the appropriate actions from the list of actions to the answer area and arrange them in the correct order.

Options:

Buy Now
Questions 7

You need to create a chain of command method for inserting the data on the table for the new fields. How should you complete the code? To answer, select the appropriate configuration m the answer area. NOTE: Each correct selection is worth one point.

Options:

Questions 8

You need to apply a pattern to the newly created form to satisfy the requirements. Which form pattern should you apply?

Options:

A.

Table of Contents

B.

Simple Let and Details

C.

List Page

D.

Details Master

Buy Now
Questions 9

You need to select an integration strategy to meet the new freight processing requirement. Which two integration strategies can you use? Each correct answer presents a complete solution. NOTE: Each correct selection is worth one point.

Options:

A.

custom web service

B.

batch data API EC.

C.

OData

D.

asynchronous integration

Buy Now
Questions 10

A company uses Dynamics 365 Finance. You have two tables as shown:

When an employee is deleted from EmplTable, the corresponding bank account information must automatically be deleted from EmplBankAccount.

You need to ensure that the requirement is met

Which two actions should you perform? Each correct answer presents part of the solution.

NOTE: Each correct selection is worth one point.

Options:

A.

Select the foreign key relation properties from EmplBankAccount.

B.

Set the value of the OnDelete property to Restricted.

C.

Set the value of the OnDelete property to Cascade.

D.

Select the foreign key relation properties from EmplTable.

Buy Now
Questions 11

You need to add data to the WHSTmpStatusChange table by extending the insert method.

What should you do?

Options:

A.

Right-click the WHSTmpStatusChange table in the Application Object Tree (AOT) and select View Code

B.

Right-click the project node in Solution Explorer and add a new Class object to the project.

C.

Right-click the WHSTmpStatusChange table in the Application Object Tree (AOT) and create an extension in the existing project

D.

Right-click the project node in Solution Explorer and add a new Table object to the project.

Buy Now
Questions 12

You need to add new fields to the table for the Inventory Status form to represent the product name and batch ID.

What are two possible ways to achieve this goal? Each correct answer presents a complete solution.

NOTE Each correct selection is worth one point.

Options:

A.

Drag the EcoResProductName and inventBatchiD extended data types (EDTs) from the Application Object Tree (AOT) to the table. Rename the fields appropriately,

B.

Right-click the newly created table and add two new base enumerations to the table. Rename the new enumerations Product Name and Batch ID respectively.

C.

Right-click the newly created table. Add two new string fields to the table. Rename one string field to Product Name and rename the other to Batch ID. Change the property of the fields to the appropriate EDTs.

D.

Right-click the newly created table in the designer Add a string field named Product Name to the table. Add an enumeration named Batch ID to the table.

Buy Now
Questions 13

Note: This question is part of a series of questions that present the same scenario. Each question in the series contains a unique solution that might meet the stated goals. Some question sets might have more than one correct solution, while others might not have a correct solution.

After you answer a question in this section, you will NOT be able to return to it. As a result, these questions will not appear in the review screen.

You are developing a form for Dynamics 365 Finance.

You need to add a button that allows users to run a report.

Solution: Create a display menu item. Add the menu display item to the form button and then link the report to the display menu item.

Does the solution meet the goal?

Options:

A.

Yes

B.

No

Buy Now
Questions 14

You are a Dynamics 365 Finance developer. You create an integer variable named totalSales.

Which three code segments can you use? Each correct answer presents a complete solution.

NOTE: Each correct selection is worth one point.

Options:

A.

Option A

B.

Option B

C.

Option C

D.

Option D

Buy Now
Questions 15

You are a Dynamics 365 Finance and Operations developer.

You need to monitor system performance.

Which tools should you use? To answer, select the appropriate option in the answer area.

NOTE: Each correct selection is worth one point.

Options:

Buy Now
Questions 16

You need to map the target data fields in the Data management workspace for the custom data entity.

Which three actions should you perform in sequence? To answer, move the appropriate actions from the list of actions to the answer area and arrange them in the correct order.

Options:

Buy Now
Questions 17

You are developing a workflow for Dynamics 365 Supply Chain Management.

The workflow must only be used within the organization for which it was defined.

You need to configure the workflow.

Which workflow association type should you use?

Options:

A.

Company

B.

Other

C.

Global

Buy Now
Questions 18

You are a Dynamics 365 Finance developer.

You need to create a key performance indicator (KPI) that shows total sales by region.

Which two objects should you create? Each correct answer presents part of the solution.

NOTE: Each correct selection is worth one point.

Options:

A.

dimension for region

B.

dimension for total sales

C.

aggregated view for total sales

D.

measure for region

E.

measure for total sales

Buy Now
Questions 19

A company uses Dynamics 365 Finance.

You implement the unit rest framework. You must automate the testing for previously developed functionality.

You need to create unit tests in visual Studio.

Which five actions should you perform in sequence? to answer, move the appropriate actions from the list of actions to the answer area and arrange them in the correct order.

Options:

Buy Now
Questions 20

You are a Dynamics 365 Finance developer.

You have the following source control branches:

You need to move the list of changesets from the development environment to the test environment.

What should you do? To answer, select the appropriate options in the answer area.

NOTE: Each correct selection is worth one point.

Options:

Buy Now
Questions 21

You create a new interface class in Dynamics 365 Finance. The class has two methods. You need to create a valid interlace class.

Which two actions should you perform? Each correct answer presents a complete solution. NOTE: Each correct selection is worth one point.

Options:

A.

Declare the class and all Its methods as public.

B.

Implement only some methods in the classes that implement the interface.

C.

Implement the class as abstract

D.

Declare all methods in the classes that implement the interface.

Buy Now
Questions 22

Note: This question is part of a series of questions that present the same scenario. Each question in the series contains a unique solution that might meet the stated goals. Some question sets might have more than one correct solution, while others might not have a correct solution.

After you answer a question in this section, you will NOT be able to return to it. As a result, these questions will not appear in the review screen.

You must extend the class SalesLineType and add a new method that returns the day of week for the system’s current date as an integer value.

You need to create a class that extends SalesLineType and adds the new method.

Solution: You create the following code:

Does the solution meet the goal?

Options:

A.

Yes

B.

No

Buy Now
Questions 23

A company uses Dynamics 365 Finance

You implement the Insert method for a table you create. The class must meet the following requirements:

• If FieldA is equal to 'Hello." then FieldB must save the integer value 10.

• If FieldA is equal to "World," then FieldB must save the integer value 20.

• Otherwise FieldB must save the integer 0.

You need to implement the code

Which two code segments can you use? Each correct answer presents a complete solution.

NOTE: Each correct selection is worth one point.

A)

B)

C)

D)

Options:

A.

Option A

B.

Option B

C.

Option C

D.

Option D

Buy Now
Questions 24

You are training a new Dynamics 365 Finance developer.

You need to recommend where asynchronous integrations should be used instead of synchronous integrations.

For which scenario should you recommend asynchronous integration?

Options:

A.

When products are updated in Finance and Operations, a third-party application that contains the same product information needs to also be updated in near real-time.

B.

A company uses an on-premises inventory management system that needs to receive sales order data every hour throughout the day.

C.

A company uses workflow for purchasing approvals, which then sends just-in-time approval information to a third-party application for approvers to review.

D.

A manufacturer wants to move production data from an on-premises deployment Dynamics 365 Finance in near real-time.

Buy Now
Questions 25

Note: This question is part of a series of questions that present the same scenario. Each question in the series contains a unique solution. Determine whether the solution meets the stated goals. Some question sets might have more than one correct solution, while others might not have a correct solution.

After you answer a question in this section, you will NOT be able to return to it. As a result, these questions will not appear in the review screen.

You must create a new attribute class in which to mark other classes in the ISV solution and their respective methods with the error levels Warning and Error. You have the following class: the numbers are included for reference only.)

You need 10 ensure that the compiler will report an error if code calls the bike method.

Solution:

Create the following attribute class:

Insert the following code at line 04:

Does The solution meet the goal?

Options:

A.

Yes

B.

No

Buy Now
Questions 26

A company uses Dynamics 365 Finance. The company has a customized version of the sales invoice report.

The sales department requires a new field in the header of the report. You add the field in the report in Visual Studio. You build the Visual Studio solution and test the changes to the report in your development environment.

The new field does not appear in the print preview of the report.

You need to ensure that the new field appears in the header.

What should you do?

Options:

A.

Synchronize the database from Visual Studio.

B.

Restart the SQL Server Reporting Services service.

C.

Restart IIS/IIS Express

D.

Deploy the report.

Buy Now
Questions 27

You are a Dynamics 365 Supply Chain Management developer.

You are working on a project by using Visual Studio.

Several users check out a custom form version control and modify the form.

You need to find the user that has added a specific line of code to the form.

What should you do?

Options:

A.

Open the object in Object Designer, select the title of the object, and then right-click View History.

B.

In Solution Explorer, navigate to the object and right-click View History.

C.

Using Visual Studio, navigate to the object. Add the object to a new solution, and then right-click View History.

D.

Using Visual Studio, navigate to the object in Application Explorer and right-click View History.

Buy Now
Questions 28

A company uses Dynamics 365 Finance.

You must add fields to a standard table in Visual Studio.

You need to create an extension of the table.

What should you do?

Options:

A.

Create a table extension from the base table.

B.

Create an extension class for the base table.

C.

Create a new table object in the project.

D.

Drag the table from the AOT to the project.

Buy Now
Questions 29

A company is developing a new solution in Dynamics 365 Supply Chain Management. Customers will be able to use the solution in their own implementations.

Several of the classes in the solution are designed to be extended by customers in other implementations to accommodate unique requirements.

Certain methods must show up in the output window during the build process to advise other developers about the intent of the methods.

You need to implement the statements for the methods.

What should you implement?

Options:

A.

global variables

B.

info () function

C.

properties

D.

comments

E.

attributes

Buy Now
Questions 30

You need to ensure the customer is able to access the business event.

Which two endpoint types can you use? Each correct answer presents a complete solution.

NOTE: Each correct selection is worth one point.

Options:

A.

Service Bus Topic

B.

Service Bus Queue

C.

Power Automate

D.

Event Grid

Buy Now
Questions 31

You must merge the code change that you performed and which was tested by QA to the production environment.

You need to merge a specific changeset.

Which three actions should you perform in sequence? To answer, move the appropriate actions from the list of actions to the answer area and arrange them in the correct order.

Options:

Buy Now
Questions 32

You need to create the new approval workflow for purchase orders.

What should you use? To answer, select the appropriate options in the answer area.

NOTE: Each correct selection is worth one point.

Options:

Buy Now
Questions 33

You need to resolve the issue for UserB.

Which framework should you use?

Options:

A.

SysExtension

B.

SysOperationSandBox

C.

SysOperation

D.

RunBaseBatch

Buy Now
Questions 34

A company uses Dynamics 365 Supply Chain Management.

You are developing multiple integrations.

You need to select the appropriate integration models for the integrations.

Which integration model should you select? To answer, drag the appropriate data integration models to the correct requirements. Each data integration model 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.

Options:

Buy Now
Questions 35

You need to implement the migration requirements.

Which two options can you use? Each correct answer presents a complete solution.

NOTE: Each correct selection is worth one point.

Options:

A.

a data entity and a Data management import job

B.

a data entity and Entity store

C.

a data entity and bring your own database (BYOD)

D.

a public data entity and the Excel add-in

Buy Now
Questions 36

You need to investigate the Vendor exclusion list issue.

What should you do?

Options:

A.

Navigate to the General tab, select Record Info, and then select Show all fields.

B.

Navigate to the Options tab, select Record Info, and then select Show all fields.

C.

Navigate to the Options tab and select Database log.

D.

Navigate to the Page options tab, select Record Info, and then select Show all fields.

Buy Now
Questions 37

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.

Options:

Buy Now
Questions 38

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

Options:

A.

List Page

B.

Simple List

C.

List View

D.

Workspace

Buy Now
Questions 39

You need to configure security for the Vendor Exclusion List report.

What are two possible ways to achieve this goal? Each correct answer presents a complete solution.

NOTE: Each correct selection is worth one point.

Options:

A.

Create a new privilege, add a reference to an output menu item, and then add the new privilege to a role.

B.

Create a new security policy and add an output menu item. Add the new security policy to duty extension

and then to a role extension.

C.

Create a new privilege extension and add an output menu item. Add the privilege to a duty extension and

then to a role extension.

D.

Create a new privilege and assign it to an output menu item. Add the new privilege to a duty extension and

then add the duty extension to a role.

Buy Now
Questions 40

You need to implement the payroll application data process.

Which two objects should you create? Each correct answer presents part of the solution.

NOTE: Each correct selection is worth one point.

Options:

A.

a data contract class that uses the DataContractAttribute attribute

B.

a service class that has a public method which accepts a single parameter for a contract

C.

a class that extends SysOperationServiceBase

D.

an UIBuilder class that extends SysOperationAutomaticUIBuilder

Buy Now
Questions 41

You need to deploy the web portal integration solution.

Which four actions should you perform in sequence? To answer, move the appropriate actions from the list of actions to the answer area and arrange them in the correct order.

Options:

Buy Now
Questions 42

You need to implement the reporting requirements for the Vendor exclusion list.

Which options you should use? To answer, select the appropriate options in the answer area.

NOTE: Each correct selection is worth one point.

Options:

Buy Now
Questions 43

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.

Options:

Buy Now
Questions 44

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

You need to apply changes to address User2’s 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.

Options:

Buy Now
Questions 45

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.

Options:

Buy Now
Questions 46

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.

Options:

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.

Implement Chain of Command (CoC) and method wrapping by creating a form extension class.

D.

In Application Explorer, create a form extension and implement validation.

Buy Now
Questions 47

You need to implement the company’s integration requirements.

Which integration strategies should you use? To answer, drag the appropriate integration strategies to the correct requirements. Each integration strategy 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.

Options:

Buy Now
Questions 48

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.

Options:

A.

Overlay the existing FinanceExt model and populate the solution definition.

B.

Modify the DefaultModelForNewProject setting in the DefaultConfig.xml file and name the model FinanceExt.

C.

Create a new model that extends the existing FinanceExt model.

D.

Extend the existing FinanceExt model and populate the project model definition.

Buy Now
Questions 49

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.

Options:

A.

QuickFilter

B.

Advanced Filter

C.

Grid Column Filtering

D.

Filter pane

Buy Now
Questions 50

You need to modify the environment to meet User1’s requirements.

What should you do?

Options:

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.

Buy Now
Questions 51

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.

Options:

Buy Now
Exam Code: MB-500
Exam Name: Microsoft Dynamics 365: Finance and Operations Apps Developer
Last Update: Nov 23, 2024
Questions: 277

PDF + Testing Engine

$144.99

Testing Engine

$109.99

PDF (Q&A)

$94.99