Microsoft MB-500 Test Engine Practice Test Questions, Exam Dumps [Q27-Q50]

Share

Microsoft MB-500 Test Engine Practice Test Questions, Exam Dumps

100% Free MB-500 Daily Practice Exam With 127 Questions


How to Register For Exam MB-500: Microsoft Dynamics 365: Finance and Operations Apps Developer?

Exam Register Link: https://examregistration.microsoft.com/?locale=en-us&examcode=MB-500&examname=Exam%20MB-500:%20Microsoft%20Dynamics%20365%20Finance%20and%20Operations%20Apps%20Developer&returnToLearningUrl=https%3A%2F%2Fdocs.microsoft.com%2Flearn%2Fcertifications%2Fexams%2Fmb-500

 

NEW QUESTION 27
You are a Dynamics 365 Finance and Operations developer. You have the following code: (Line numbers are created for reference only.)

Which values does the info() method return? To answer, select the appropriate option in the answer area.
NOTE: Each correct selection is worth one point.

Answer:

Explanation:

Explanation:
Box 1: SID1234
Parameters
All methods have their own scope. A method can take one or more parameters. Within the scope of the method, these parameters are treated as local variables and are initialized with a value from the parameter in the method call. All parameters are passed by value, which means that you can't change the value of the original variable. You can change only the local variable in the method. This local variable is a copy of the original variable.
Box 2: 5
Reference:
https://docs.microsoft.com/en-us/dynamics365/fin-ops-core/dev-itpro/dev-ref/xpp-classes-methods

 

NEW QUESTION 28
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 have an enumeration named truckStatus that has the following statuses:
* Empty
* Loaded
* Completed
You have the following code:

You need to extend this enumeration and add the following statuses to the enumeration: Quarantine, InTransit.
You must then modify code that validates the switch statement.
Solution: Add a post handler to the method that checks the enumeration and logic for your new enumeration values using a range comparison for your new values.

Does the solution meet the goal?

  • A. No
  • B. Yes

Answer: A

 

NEW QUESTION 29
You are a Dynamics 365 Finance developer. You have a virtual machine that includes Visual Studio. You need to display the elements by model. What should you do?

  • A. Right-click the Application Object Tree (AOT) node in Application Explorer and select Model View.
  • B. Select Model Management from the menu and then select Refresh Models.
  • C. Select Metadata Search from the Dynamics 365 menu.
  • D. Select Model Management from the menu and then select View all package dependencies

Answer: A

Explanation:
* In Microsoft Visual Studio, on the Dynamics 365 menu, click Model Management > Refresh Models.
* Open Application Explorer by clicking View > Application Explorer.
* Right-click the AOT root node, and then click Model view.
A list of installed models is displayed.
Reference:
https://docs.microsoft.com/en-us/dynamics365/fin-ops-core/dev-itpro/dev-tools/manage-runtime-packages

 

NEW QUESTION 30
You are a Dynamics 365 Finance developer.
You need to export data from all products into a data package every day at 2 a.m. You open the Data Management workspace.
How should you complete the process? To answer, select the appropriate options in the answer area.
NOTE: Each correct selection is worth one point.

Answer:

Explanation:

Explanation:
Box 1: Export
Select the Import or Export (in this case) tile to create a new data project.
Box 2: Data source
Enter a valid job name, data source, and entity name.
Box 3: Data project page
O the Data project page, select Create recurring data job.
Box 4: Setup authorization policy
In the Set up authorization policy tab, enter the application ID that was generated for your application, and mark it as enabled.
Reference:
https://docs.microsoft.com/en-us/dynamics365/fin-ops-core/dev-itpro/data-entities/recurring-integrations

 

NEW QUESTION 31
You need to configure security for the CashDisc form.
What changes should you make? To answer, select the appropriate options in the answer area.
NOTE: Each correct selection is worth one point.

Answer:

Explanation:

 

NEW QUESTION 32
You are a Dynamics 365 Finance developer. You create a key performance indicator (KPI) in a development environment. You need to display the KPI. What should you do?

  • A. Add the KPI to an existing form.
  • B. Create a new workspace and add the KPI to the workspace.
  • C. Create a tile and add the KPI to the tile.

Answer: B

Explanation:
Explanation
KPIs and aggregate data that are shown on the dashboard, or a workspace, can be secured by using menu items.
Reference:
https://docs.microsoft.com/en-us/dynamics365/fin-ops-core/dev-itpro/analytics/model-aggregate-data

 

NEW QUESTION 33
You have a table in which multiple properties must be changed. Multiple table properties are locked down at the base table and must not be overwritten.
You need to modify the table properties by extending the table.
Which table property can you populate in a table extension by using the property sheet?

  • A. Cache lookup
  • B. Table group
  • C. Modified date time
  • D. Configuration key

Answer: D

Explanation:
You can now modify the following properties through the property sheet:
* Created By
* Created Date Time
* Modified By
* Modified Date Time
* Country Region Codes
Reference:
https://docs.microsoft.com/sv-se/dynamics365/fin-ops-core/dev-itpro/extensibility/modify-properties

 

NEW QUESTION 34
The warehouse manager at Contoso, Ltd. wants to display a tile in the user interface that will show total RAFs per hour.
You need to create a key performance indicator (KPI) that meets these requirements.
What two components should you create? Each correct answer presents part of the solution.
NOTE: Each correct selection is worth one point.

  • A. TempDB table
  • B. aggregate measurements
  • C. aggregate dimensions
  • D. data entity

Answer: B,C

Explanation:
https://docs.microsoft.com/en-us/dynamics365/fin-ops-core/dev-itpro/analytics/model-aggregate-data#model-a-kpi-to-show-revenue-per-rental

 

NEW QUESTION 35
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 adding a new field to the SalesTable form.
You must use an extension to add a status field onto the form.
You need to create the extension in the Application Object Tree (AOT) and add the extension to the demoExtensions model.
Solution: Navigate to the user interface forms section for the SalesTable form and create an extension.
Does the solution meet the goal?

  • A. No
  • B. Yes

Answer: B

Explanation:
You can customize model elements by creating extensions.
In Dynamics 365 Finance and Operations, the new fields will need to be added via a table extension. Create the extensions on the SalesTable.
Reference:
https://stoneridgesoftware.com/how-to-extend-sales-order-update-functionality-to-custom-fields-in-d365-finance-and-operations/

 

NEW QUESTION 36
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 have an enumeration named truckStatus that has the following statuses:
Empty
Loaded
Completed
You have the following code:

You need to extend this enumeration and add the following statuses to the enumeration: Quarantine, InTransit. You must then modify code that validates the switch statement.
Solution: Add a post handler to the method that checks the enumeration and logic for your new enumeration values using the enumeration value.

Does the solution meet the goal?

  • A. Yes.
  • B. No

Answer: A

 

NEW QUESTION 37
You need to set up a recurring integration to enable file exchanges between Dynamics 365 Finance and a third-party system.
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.

Answer:

Explanation:

Explanation:
Step 1: Set up a data project
Step 2: Create a recurring data job
* Create a recurring data job
* On the Data project page, select Create recurring data job (Step 2)
* Enter a valid name and a description for the recurring data job.
* On the Set up authorization policy tab, enter the application ID that was generated for your application, and mark it as enabled.
* Expand Advanced options tab, and specify either File or Data package (Step 3)
* Select Set processing recurrence, and then, in the Define recurrence dialog box, set up a valid recurrence for your data job (Step 4) Step 3: Specify whether you are using a file or data package.
Step 4: Set up the processing recurrence
Step 5: Link a new application ID to the data recurring data job
You can use integration REST endpoints to integrate with the client, submit documents (import), or poll available documents for download (export). These endpoints support OAuth.
Reference:
https://docs.microsoft.com/en-us/dynamics365/fin-ops-core/dev-itpro/data-entities/recurring-integrations

 

NEW QUESTION 38
A company uses Dynamics 365 Supply Chain Management.
You need to integrate the system with third-party applications.
Which data integration strategies should you use? To answer, drag the appropriate data integration strategies to the correct scenarios. Each 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.

Answer:

Explanation:

 

NEW QUESTION 39
You are a Dynamics 365 Finance developer. You create a key performance indicator (KPI) in a development environment. You need to display the KPI. What should you do?

  • A. Add the KPI to an existing form.
  • B. Create a new workspace and add the KPI to the workspace.
  • C. Create a tile and add the KPI to the tile.

Answer: B

Explanation:
KPIs and aggregate data that are shown on the dashboard, or a workspace, can be secured by using menu items.
Reference:
https://docs.microsoft.com/en-us/dynamics365/fin-ops-core/dev-itpro/analytics/model-aggregate-data

 

NEW QUESTION 40
You have a table in which multiple properties must be changed. Multiple table properties are locked down at the base table and must not be overwritten.
You need to modify the table properties by extending the table.
Which table property can you populate in a table extension by using the property sheet?

  • A. Created by
  • B. Table group
  • C. Clustered index
  • D. Configuration key

Answer: A

Explanation:
You can now modify the following properties through the property sheet:
* Created By
* Created Date Time
* Modified By
* Modified Date Time
* Country Region Codes
Reference:
https://docs.microsoft.com/sv-se/dynamics365/fin-ops-core/dev-itpro/extensibility/modify-properties

 

NEW QUESTION 41
You are a Dynamics 365 Finance developer.
You launch the Performance Timer tool to troubleshoot performance issues with a business process.
You need to view the results from the tool.
What does the tool present? To answer, select the appropriate options in the answer area.
NOTE: Each correct selection is worth one point.

Answer:

Explanation:

Explanation:
Box 1: The number of open forms and ..(per second)
Forms - Forms will show how many forms are currently open, plus the rate at which they opened and closed (per second), and a set of counters, such as the total amount of created or closed forms.
Box 2: The number of open forms and ..(per second)
This should really be: Services Session provider - This is the total number of sessions created.
Reference:
https://docs.microsoft.com/en-us/dynamics365/fin-ops-core/dev-itpro/perf-test/performance-timer

 

NEW QUESTION 42
You are a Dynamics 365 Finance developer.
You have a form that displays customer records by using a listpage control. You must add related sales total information for the selected customer to the form.
You need to display the required related sales total information.
What should you add to the form?

  • A. a custom lookup
  • B. a factbox
  • C. an external feed
  • D. a tile
  • E. a quick filter

Answer: B

Explanation:
Explanation
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.
Reference:
https://docs.microsoft.com/en-us/dynamics365/fin-ops-core/dev-itpro/user-interface/list-page-form-pattern

 

NEW QUESTION 43
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.

  • A. a data entity and bring your own database (BYOD)
  • B. a data entity and a Data management import job
  • C. a data entity and Entity store
  • D. a public data entity and the Excel add-in

Answer: C,D

Explanation:
Scenario: Implement the Excel integration for the Vendor Exclusion List form.
B: By opening entity data in Excel, you can quickly and easily view and edit the data by using the Excel add-in.
Reference:
https://docs.microsoft.com/en-us/dynamics365/fin-ops-core/dev-itpro/office-integration/use-excel-add-in
https://docs.microsoft.com/en-us/dynamics365/fin-ops-core/dev-itpro/analytics/power-bi-integration

 

NEW QUESTION 44
D18912E1457D5D1DDCBD40AB3BF70D5D
You are a Dynamics 365 Finance and Operations developer.
You need to deploy a new report in a development environment.
From which two locations can you deploy the report? Each correct answer presents a complete solution.
NOTE: Each correct selection is worth one point.

  • A. Build project
  • B. Package deployment
  • C. Application Explorer
  • D. Build Models options
  • E. Solution Explorer

Answer: B,E

Explanation:
A: 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.
D:

Reference:
https://docs.microsoft.com/en-us/dynamics365/fin-ops-core/dev-itpro/deployment/create-apply-deployable-package

 

NEW QUESTION 45
You are a Dynamics 365 Finance developer.
You need to create a security rule that meets the following requirements:
* Provide the same permissions as HcmWorkerActionHireRead
* Assign the Update level access and the HcmHumanResourceMamager Role
Which settings should you use? To answer, select the appropriate option in the answer area.
NOTE: Each correct selection is worth one point.

Answer:

Explanation:

Explanation

 

NEW QUESTION 46
You have the following code:

You need to extend this enumeration and add the following statuses to the enumeration: Quarantine, InTransit What should you do?

  • A. Add a new case statement in the model of the existing code,
  • B. Add a post handler to the method that checks the enumeration and logic for your new enumeration values using the integer value of the enumeration.
  • C. Add a post handler to the method that checks the enumeration and logic for your new enumeration values using a range comparison for your new values.
  • D. Add a post handler to the method that checks the enumeration and logic for your new enumeration values using the enumeration value.

Answer: D

 

NEW QUESTION 47
DRAG DROP
An organization uses Visual Studio to develop customizations for Dynamics 365 Supply chain Management.
You need to create an extension for the CustTable form and add the extension to the Visual Studio project.
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.
Select and Place:

Answer:

Explanation:

Explanation:
Step 1: In Solution Explorer, drag the CustTable form into the project.
Step 2: In The Application Object Tree (AOT), right-click the CustTable form.
Step 3: Select Create extension.
Note: To create an extension (in general terms), follow these steps:
1. In the Application Explorer window, expand the AOT node.
2. Expand the node for the element that you want to extend. For example, in Classic view, extend the Data Models node, and then extend the Tables node to view all available tables.
3. Right-click the element that you want to extend.
4. Select Create extension to add an extension to your current project. Select Create extension in new project if you want to add the extension to a new project. The element will be added to a project in the Solution Explorer window, and it will open in the element designer.
Reference:
https://docs.microsoft.com/en-us/dynamics365/business-central/dev-itpro/developer/devenv-extension- example

 

NEW QUESTION 48
A company plans to deploy Dynamics 365 Unified Operations.
You need to recommend deployment options for the company.
What should you recommend? To answer, drag the appropriate deployment options to the correct application requirement. Each deployment option 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.

Answer:

Explanation:

Reference:
https://docs.microsoft.com/en-us/dynamics365/fin-ops-core/fin-ops/get-started/cloud-prem-comparison

 

NEW QUESTION 49
You are a Dynamics 365 Finance developer. You create a key performance indicator (KPI) that will enable users to be able to see the total sales per region. You create a tile named SalesRegion and link the KPI to the tile.
You need to ensure that users can view this tile on a form in the user interface.
What should you do?

  • A. Create an extension of the form that will contain the new tile and KPI. Add the tile to the extended form.
  • B. Open the form that will contain the new tile. Add the tile to the form.
  • C. Create a new workspace. Add the KPI to the workspace from the user interface.

Answer: C

Explanation:
https://docs.microsoft.com/en-us/dynamics365/fin-ops-core/dev-itpro/user-interface/workspace-form-pattern

 

NEW QUESTION 50
......

Use Valid New MB-500 Test Notes & MB-500 Valid Exam Guide: https://www.prep4sureguide.com/MB-500-prep4sure-exam-guide.html

MB-500 exam torrent Microsoft study guide: https://drive.google.com/open?id=1XTU1Qpod0BjIlZCr61CUBpYVyNQzJ-nq