Practice Test Free
  • QUESTIONS
  • COURSES
    • CCNA
    • Cisco Enterprise Core
    • VMware vSphere: Install, Configure, Manage
  • CERTIFICATES
No Result
View All Result
  • Login
  • Register
Quesions Library
  • Cisco
    • 200-301
    • 200-901
      • Multiple Choice
      • Drag Drop
    • 350-401
      • Multiple Choice
      • Drag Drop
    • 350-701
    • 300-410
      • Multiple Choice
      • Drag Drop
    • 300-415
      • Multiple Choice
      • Drag Drop
    • 300-425
    • Others
  • AWS
    • CLF-C02
    • SAA-C03
    • SAP-C02
    • ANS-C01
    • Others
  • Microsoft
    • AZ-104
    • AZ-204
    • AZ-305
    • AZ-900
    • AI-900
    • SC-900
    • Others
  • CompTIA
    • SY0-601
    • N10-008
    • 220-1101
    • 220-1102
    • Others
  • Google
    • Associate Cloud Engineer
    • Professional Cloud Architect
    • Professional Cloud DevOps Engineer
    • Others
  • ISACA
    • CISM
    • CRIS
    • Others
  • LPI
    • 101-500
    • 102-500
    • 201-450
    • 202-450
  • Fortinet
    • NSE4_FGT-7.2
  • VMware
  • >>
    • Juniper
    • EC-Council
      • 312-50v12
    • ISC
      • CISSP
    • PMI
      • PMP
    • Palo Alto Networks
    • RedHat
    • Oracle
    • GIAC
    • F5
    • ITILF
    • Salesforce
Contribute
Practice Test Free
  • QUESTIONS
  • COURSES
    • CCNA
    • Cisco Enterprise Core
    • VMware vSphere: Install, Configure, Manage
  • CERTIFICATES
No Result
View All Result
Practice Test Free
No Result
View All Result
Home Practice Questions Free

MB-500 Practice Questions Free

Table of Contents

Toggle
  • MB-500 Practice Questions Free – 50 Exam-Style Questions to Sharpen Your Skills
  • Free Access Full MB-500 Practice Questions Free

MB-500 Practice Questions Free – 50 Exam-Style Questions to Sharpen Your Skills

Are you preparing for the MB-500 certification exam? Kickstart your success with our MB-500 Practice Questions Free – a carefully selected set of 50 real exam-style questions to help you test your knowledge and identify areas for improvement.

Practicing with MB-500 practice questions free gives you a powerful edge by allowing you to:

  • Understand the exam structure and question formats
  • Discover your strong and weak areas
  • Build the confidence you need for test day success

Below, you will find 50 free MB-500 practice questions designed to match the real exam in both difficulty and topic coverage. They’re ideal for self-assessment or final review. You can click on each Question to explore the details.

Question 1

HOTSPOT
-
You have a Dynamics 365 Finance environment.
You have the following code: (Line numbers are included for reference only.)
 Image
For each of the following statements, select Yes if the statement is true. Otherwise, select No.
NOTE: Each correct selection is worth one point.
 Image

 


Suggested Answer:
Correct Answer Image

 

Question 2

You have an enumeration named truckStatus that has the following statuses:
✑ Empty
✑ Loaded
✑ Completed
You have the following code:
 Image
You need to add the following statuses to the enumeration: Quarantine, InTransit
What should you do?

A. Add a post handler to the method that checks the enumeration and logic for your new enumeration values using the enumeration value.

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

C. Add a new case statement in the model of the existing code.

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

 


Suggested Answer: A

 

Question 3

HOTSPOT -
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 in the answer area.
NOTE: Each correct selection is worth one point.
Hot Area:
 Image

 


Suggested Answer:
Correct Answer Image

Box 1: [ExtensionOf(ClassStr(WHSTmpStatusChange))]
An extension class must belong to a package that references the model where the augmented class is defined.
Box 2: final –
The keyword ‘final’ needs to be used in the class definition line.
Example:
[ExtensionOf(classStr(BusinessLogic1))]
final class BusinessLogic1_Extension
Box 3: next insert();
Wrapper methods must always call next
Wrapper methods in an extension class must always call next, so that the next method in the chain and, finally, the original implementation are always called. This restriction helps guarantee that every method in the chain contributes to the result.
Box 4: InventSum.InventBatchID = thisNewInventBatchID;
Use element.FormToExtendVariable to access form’s variables and datasources
Reference:
https://docs.microsoft.com/en-us/dynamics365/fin-ops-core/dev-itpro/extensibility/method-wrapping-coc

Question 4

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:
 Image
Does the solution meet the goal?

A. Yes

B. No

 


Suggested Answer: B

 

Question 5

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.
A company uses Dynamics 365 Finance. You are customizing elements for the extended data types (EDTs) shown in the following table.
 Image
You have a table named WorkCalendar. The table has a column named BasicCalendarID that uses the BasicCalendarID EDT.
You need to increase the length of the column by using an extension.
Solution: Create an extension for CalendarName.
Does the solution meet the goal?

A. Yes

B. No

 


Suggested Answer: A

Just extend CalendarName.
Note: There are several properties that can be customized on existing extended data types (EDTs) through extension:
You can only set the new String size to a value equal to or larger than the base EDT value.
Label –
Help text –
Form help –
Country region codes –
String size –
Reference:
https://docs.microsoft.com/en-us/dynamics365/fin-ops-core/dev-itpro/extensibility/modify-edt

Question 6

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.
A company uses Dynamics 365 Finance. You are customizing elements for the extended data types (EDTs) shown in the following table.
 Image
You have a table named WorkCalendar. The table has a column named BasicCalendarID that uses the BasicCalendarID EDT.
You need to increase the length of the column by using an extension.
Solution: Create derived EDT for CalendarName.
Does the solution meet the goal?

A. Yes

B. No

 


Suggested Answer: B

You can only modify the value if the EDT does not extend from another EDT.
Instead create an extension for CalendarName.
Reference:
https://docs.microsoft.com/en-us/dynamics365/fin-ops-core/dev-itpro/extensibility/modify-edt

Question 7

DRAG DROP -
A company is migrating from a legacy system to Dynamics 365 Finance.
You need to import the customer data by using the Data Management workspace.
In which order should you perform the actions? 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:
 Image

 


Suggested Answer:
Correct Answer Image

The import process is done through the Import tile in the Data Management workspace.
Import a data package –
1. Log into the environment using a login with sufficient privileges (typically this is the Administrator role).
2. On the dashboard, click the Data Management workspace.
3. Click the Import tile.
4. On the next page, do the following:
Provide a name.
In the Source Data Format field, select Package.
Click the Upload button and choose the appropriate package file from the location for the data being imported. This will import all the files from the package.
Click Save, and then click Import.
Reference:
https://docs.microsoft.com/en-us/dynamics365/fin-ops-core/dev-itpro/data-entities/data-entities-data-packages

Question 8

DRAG DROP
-
A company implements Dynamics 365 Finance.
You must prevent users from viewing vendors based on vendor group.
You need to create an Extensible Data Security (XDS) policy to meet this requirement.
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.
 Image

 


Suggested Answer:
Correct Answer Image

 

Question 9

You need to update the CashDisc report to meet the requirements.
What should you do?

A. Delete the existing CashDisc report in the extension model and create a new report.

B. Extend the existing CashDisc report in the extension model and add the new field to the design.

C. Duplicate the existing CashDisc report in the extension model and add the new field to the design.

D. Customize the existing CashDisc report in the overlayering model and add the new field to the design.

 


Suggested Answer: B

 

Question 10

HOTSPOT
-
A company is implementing Dynamics 365 Supply Chain Management.
The company must import initial business document management templates to act as a start for future business documents. The templates must be configured to work with print management.
No templates or configurations have been set up for the implementation.
You need to select and configure templates for printing.
Which solution components should you use? To answer, select the appropriate options in the answer area.
NOTE: Each correct selection is worth one point.
 Image

 


Suggested Answer:
Correct Answer Image

 

Question 11

DRAG DROP -
You need to map the Dynamics 365 Finance components into the standard models.
Which component belongs to which model? To answer, drag the appropriate models to the correct components. Each 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.
Select and Place:
 Image

 


Suggested Answer:
Correct Answer Image

Reference:
https://docs.microsoft.com/en-us/dynamics365/fin-ops-core/dev-itpro/dev-tools/application-stack-server-architecture

Question 12

A company is implementing Dynamics 365 Finance.
You implement a risk rating for vendors. The risk rating is on the Vendor form.
The rating is determined by a vendor's on-time delivery performance as well as their credit rating.
The risk rating consists of the following values:
1 = Good
2 = Medium
3 = Risky
The company plans to implement purchase requisitions. The company wants to prevent purchase orders from being confirmed when a vendor's risk rating is set to Risky.
You need to implement the functionality.
What should you do?

A. Create a method for the OnModified event of the vendor account.

B. Create a new business event.

C. Create a method for the OnInitializing event of the form.

D. Create a Chain of Command (CoC) class extension.

 


Suggested Answer: D

 

Question 13

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:
 Image
Does the solution meet the goal?

A. Yes

B. No

 


Suggested Answer: B

 

Question 14

A company uses Dynamics 365 Finance.
You have two tables as shown:
 Image
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.

A. Set the value of the OnDelete property to Restricted.

B. Select the foreign key relation properties from EmplBankAccount.

C. Select the foreign key relation properties from EmplTable.

D. Set the value of the OnDelete property to Cascade.

 


Suggested Answer: BD

Select the foreign key relation properties from the Child Table EmplBankAccount.
In the On Delete property we chose Delete Action Type (In our case Cascade).
Reference:
https://14-dynamics365.com/2020/12/21/deleted-actions-ondelete-with-example-microsoft-dynamics-365-fo/

Question 15

HOTSPOT -
You are a Dynamics 365 Finance developer.
You have the following code: (Line numbers are included for reference only.)
 Image
You need to evaluate the code.
What is the correct output for the method? To answer, select the appropriate option in the answer area.
NOTE: Each correct selection is worth one point.
Hot Area:
 Image

 


Suggested Answer:
Correct Answer Image

Box 2: One, Three, Four, Five –
By using a finally block, you can clean up any resources that are allocated in a try block, and you can run code even if an exception occurs in the try block.
Reference:
https://docs.microsoft.com/en-us/dotnet/csharp/language-reference/keywords/try-finally

Question 16

HOTSPOT -
You have the following code:
 Image
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:
 Image

 


Suggested Answer:
Correct Answer Image

Box 1: Yes –
Add 1 to a date adds one day.
Box 2: No –
Date2num converts a date to an integer that corresponds to the number of days since January 1, 1900 so this would give us a large number.
Int2str converts the large number into a string.
Str2date converts a string to a date. However, the large number would not be in the correct format for a date.
Reference:
https://docs.microsoft.com/en-us/dynamics365/customerengagement/on-premises/customize/types-of-fields
https://docs.microsoft.com/en-us/dynamics365/fin-ops-core/dev-itpro/dev-ref/xpp-conversion-run-time-functions

Question 17

You are using the SysTest framework to test code in Visual Studio.
You need to create a unit test class.
Which three attributes can you use to create the class? Each correct answer presents a complete solution.
NOTE: Each correct selection is worth one point.

A. TestFilter

B. Priority

C. Owner

D. EntryPoint

E. Test Property

 


Suggested Answer: BCE

The SysTest framework now supports the major test attributes in the adaptor to be on par with the MSTest framework adaptor. This includes attributes like
Category, Owner, Priority, and Test Property.
Note:
The Priority attribute SysTestPriority, which requires an integer value, is now available. A priority can only be specified once, but is supported on both the class and method level, with method level taking precedence over class level.
The Owner attribute, SysTestOwner, has also been added. This attribute was technically already supported for filtering in the Test Toolbox window, but the attribute itself was missing in X++. Similar to Priority, an owner can only be specified once and is supported on both the class and method level, with the method level taking precedence.
SysTestProperty specifies a property and a value (two strings), and can now be used in the Test Toolbox window in Visual Studio. Test Property can be specified multiple times, and can exist on both the class and method level.
Reference:
https://docs.microsoft.com/en-us/dynamics365/fin-ops-core/dev-itpro/perf-test/systest-filtering

Question 18

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: (Line numbers are included for reference only.)
 Image
You need to ensure that the compiler will report an error if code calls the bike method.
Solution:
Create the following attribute class:
 Image
Insert the following code at line 04:
[SysObsoleteAttribute("Deprecated. Please use the bicycle class instead.", false)]
Does the solution meet the goal?

A. Yes

B. No

 


Suggested Answer: B

 

Question 19

HOTSPOT -
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.
Hot Area:
 Image

 


Suggested Answer:
Correct Answer Image

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

Question 20

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

B. No

 


Suggested Answer: A

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/

Question 21

HOTSPOT -
You have the following class definition:
 Image
You need to create an extension class and create a new static method in it that converts miles to kilometers and then call the method from another class.
How should you complete the code and call the method? To answer, select the appropriate options in the answer area.
NOTE: Each correct selection is worth one point.
Hot Area:
 Image

 


Suggested Answer:
Correct Answer Image

Box 1: final class UnitConv_MyExtension
Box 2: var km = UnitConv::miToKm(62.1371);
Reference:
https://docs.microsoft.com/en-us/dynamics365/fin-ops-core/dev-itpro/extensibility/method-wrapping-coc

Question 22

An organization has two million customers that are part of the International customer group.
Validation must occur when customer records are updated. For all customers where the value of the customer group field is international, you must the delivery mode to Air.
You need to update the customer records.
Which two code segments can you use? Each correct answer presents a complete solution.
NOTE: Each correct selection is worth one point.
A.
 Image
B.
 Image
C.
 Image
D.
 Image
E.
 Image

 


Suggested Answer: DE

This is Update and Update_RecordSet Code sample. Result of both will be same .
TestTable TestTable;
//Update_Recordset
update_recordset TestTable setting Name =”New Enterprises” where TestTable.Accountnum ==”uS-027″;
//Update
ttsBegin;
while select forupdate TestTable where TestTable.Accountnum ==”uS-027″
{
TestTable.Name =”New Enterprises”;
TestTable.update();
}
ttsCommit;
info(“OK”);
Reference:
https://community.dynamics.com/ax/b/technicaltutorialsformsdynamicsax2012/posts/update-and-update-recordset-code-sample-in-ax-2012

Question 23

A company has an extension that makes changes to a base form.
You need to identify all extension changes made to the base form.
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. In the search bar on the form extension element, enter the text c:.

B. In the search bar on the base form, enter the text e:.

C. Right-click the base form and select view references.

D. In the search bar on the form extension element, enter the text e:.

E. In the search bar on the base form, enter the text c:.

 


Suggested Answer: CD

C: Customization and Extension –
Reference Image
D: Example: Navigate to FMRental.Extension in the Tree Designer
1. In the Visual Studio, in Solution Explorer, in the FleetManagement Discounts project, expand User Interface > Form Extensions.
Reference Image
The FMRental.Extension element is an extension element that extends the functionality of the FMRental form by adding two new data sources and a new tab control.
2. In Solution Explorer, double-click FMRental.Extension to open the designer.
Reference Image
3. In the designer’s search box, type ‘e:’ as shown in the image below. This filters the current designer to only show nodes that belong to the current extension.
Reference Image
Reference: alt=”Reference Image” />
D: Example: Navigate to FMRental.Extension in the Tree Designer
1. In the Visual Studio, in Solution Explorer, in the FleetManagement Discounts project, expand User Interface > Form Extensions.
Reference Image
The FMRental.Extension element is an extension element that extends the functionality of the FMRental form by adding two new data sources and a new tab control.
2. In Solution Explorer, double-click FMRental.Extension to open the designer.
Reference Image
3. In the designer’s search box, type ‘e:’ as shown in the image below. This filters the current designer to only show nodes that belong to the current extension.
<img src=”https://www.examtopics.com/assets/media/exam-media/04327/0011300002.jpg” alt=”Reference Image” />
Reference:
https://docs.microsoft.com/en-us/dynamics365/fin-ops-core/dev-itpro/extensibility/customize-model-elements-extensions

Question 24

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 an output menu item. Add the output menu item to the form button and then link the report to the output menu item.
Does the solution meet the goal?

A. Yes

B. No

 


Suggested Answer: B

Instead create an action menu item.
Reference:
https://docs.microsoft.com/en-us/dynamics365/fin-ops-core/dev-itpro/user-interface/action-controls

Question 25

DRAG DROP
-
A company uses Dynamics 365 Finance.
You create the following tables:
 Image
You need to configure the system to meet the requirements.
Which delete actions should you use? To answer, drag the appropriate delete action types to the correct scenarios. Each delete action 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.
 Image

 


Suggested Answer:
Correct Answer Image

 

Question 26

A company uses Dynamics 365 Finance.
You must add fields to a standard Dynamics 365 Finance form by using Visual Studio.
You need to create an extension for the form.
What should you do?

A. Drag the form from Application Explorer to the project.

B. Create a new class that extends the form.

C. Create an extension of the standard form in the AOT and add it to the project.

D. Add the form directly to the project and add the new fields.

 


Suggested Answer: B

 

Question 27

You are a Dynamics 365 Finance developer.
You need to create an extension class.
Which action should you perform?

A. Mark the class as final.

B. Mark the class as public.

C. Add the suffix .extension to the file name.

D. Mark the class as protected.

 


Suggested Answer: A

 

Question 28

You are a Dynamics 365 Finance developer. You create an integer variable named totalSales.
You need to display the value from totalSales in an info statement.
Which three code segments can you use? Each correct answer presents a complete solution.
NOTE: Each correct selection is worth one point.

A. info(int2str(totalSales));

B. info(totalSales);

C. info(any2str(totalSales));

D. info(strfmt(“%1”, totalSales));

E. info(strLine(totalSales, 1));

 


Suggested Answer: ACD

A: int2Str converts an integer to the equivalent string.
C: any2Str converts an anytype value to a str value. The anytype data type is a placeholder for any data type.
D: Example:
void MyMethod()
{
for (int i = 0; i < 10; i++)
{
info(strfmt(“i is %1”, i));
}
}
Reference:
https://docs.microsoft.com/en-us/dynamics365/fin-ops-core/dev-itpro/dev-ref/xpp-variables-data-types
https://docs.microsoft.com/en-us/dynamics365/fin-ops-core/dev-itpro/dev-ref/xpp-data-primitive#anytype

Question 29

HOTSPOT -
You are a Dynamics 365 Finance developer.
You have the following code: (Line numbers are included for reference only.)
 Image
You need to evaluate the code.
What is the correct output for the method? To answer, select the appropriate option in the answer area.
NOTE: Each correct selection is worth one point.
Hot Area:
 Image

 


Suggested Answer:
Correct Answer Image

Box 1: One, Two, Four, Fire –
The statements in the finally clause are executed when control leaves the try block, either normally or through an exception.
Box 2: One, Three, Four, Five –
Box 3: One, Three –
Return ends the call.
Box 4: One, Three, One, Two, Four, Five
Retry restarts the try statement.
Reference:
https://docs.microsoft.com/en-us/dynamics365/fin-ops-core/dev-itpro/dev-ref/xpp-exceptions

Question 30

You are training a new Dynamics 365 Finance developer.
You need to explain the relationships between models, packages, and projects to the new hire.
Which three design concepts should you explain? Each correct answer presents a complete solution.
NOTE: Each correct selection is worth one point.

A. A project can contain elements from multiple models.

B. A model is a group or collection of elements that constitute a distributable software solution.

C. A Visual Studio project can belong to more than one model.

D. A model is a design time concept.

E. A package is a deployment unit that may contain one or more models.

 


Suggested Answer: BDE

B: A model is a group of elements, such as metadata and source files, that typically constitute a distributable software solution and includes customizations of an existing solution.
D: A model is a design-time concept, for example a warehouse management model or a project accounting model.
E: A package is a deployment and compilation unit of one or more models.
Reference:
https://docs.microsoft.com/en-us/dynamics365/fin-ops-core/dev-itpro/dev-tools/models

Question 31

Users report that a company's Dynamics 365 Finance website is slow.
You suspect that a SQL query attached to the task GetFormInteractionTask is the cause.
You need to determine how long it takes for the query to run and return results.
What should you use?

A. Performance timer

B. Performance monitor

C. Microsoft Edge debugging tools

D. Fiddler

 


Suggested Answer: A

 

Question 32

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. Primary index

B. Created by

C. Configuration key

D. Table group

 


Suggested Answer: B

You can now modify the following properties through the property sheet:
✑ Created By
✑ Created Date Time
✑ Modified By
✑ Modified Date Time
✑ Country Region Codes
Note: There are multiple versions of this question with different correct answers and various combinations of incorrect answers.
Other incorrect answers you may see in the exam include:
✑ Save data per company
✑ Clustered index
✑ Cache lookup
Reference:
https://docs.microsoft.com/en-us/dynamics365/fin-ops-core/dev-itpro/extensibility/modify-properties

Question 33

A company uses Dynamics 365 Supply Chain Management.
You need to list all classes in the Application Suite model that contain a cross-company query.
Which query string should you use?

A. type:class, method name=run code:”crosscompany” model:”Application Suite”

B. type:class, table code:”crosscompany” model:”Application Suite”

C. type:class code:”crosscompany” model:”Application Suite”

D. type:class, method name=insert code:”crosscompany” model:”Application Suite”

 


Suggested Answer: A

 

Question 34

You have a cloud-based Dynamics 365 Finance production environment.
You need to access the data to create Microsoft Power BI reports for the business.
What should you use?

A. Power BI embedded

B. views

C. aggregate dimensions

D. data entities

 


Suggested Answer: A

 

Question 35

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

 


Suggested Answer: AC

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

Question 36

You create a bring your own database (BYOD) entity that includes four tables.
You need to configure change tracking for specific fields in the entity.
Which option should you enable?

A. custom query

B. entire entity

C. entity export

D. primary table

 


Suggested Answer: A

Reference:
https://docs.microsoft.com/en-us/dynamics365/fin-ops-core/dev-itpro/data-entities/entity-change-track

Question 37

Case study -
This is a case study. Case studies are not timed separately. You can use as much exam time as you would like to complete each case. However, there may be additional case studies and sections on this exam. You must manage your time to ensure that you are able to complete all questions included on this exam in the time provided.
To answer the questions included in a case study, you will need to reference information that is provided in the case study. Case studies might contain exhibits and other resources that provide more information about the scenario that is described in the case study. Each question is independent of the other questions in this case study.
At the end of this case study, a review screen will appear. This screen allows you to review your answers and to make changes before you move to the next section of the exam. After you begin a new section, you cannot return to this section.
To start the case study -
To display the first question in this case study, click the Next button. Use the buttons in the left pane to explore the content of the case study before you answer the questions. Clicking these buttons displays information such as business requirements, existing environment, and problem statements. When you are ready to answer a question, click the Question button to return to the question.
Background -
Munson's Pickles and Preserves Farm produces and sells jarred food goods. The organization has several production and warehouse locations across the United States. Each location runs both production and warehousing operations. The company has three locations: East, Central, and West.
The company is upgrading its Dynamics AX 2009 system to Dynamics 365 Finance.
Current environment. General -
Munson's Pickles and Preserves Farm plans to migrate customizations, data, and integration from its legacy system into Dynamics 365 finance and operations apps.
The Dynamics 365 finance and operations environment includes:
•	multiple cloud-hosted development environments using Microsoft Visual Studio 2017
•	a Microsoft Azure DevOps project for source control
•	two tier 2 environments for user acceptance testing and staging, as well as production
Munson's Pickles and Preserves Farm is currently in the planning and development phase of the upgrade process. The company's internal development team needs additional development resources to address issues. The company already created a project that is set up to use a custom model named GPExtensions.
Current environment. Integrations
Munson's Pickles and Preserves Farm has a new integration for its freight processing information. The internal development team created the secure file transfer protocol (SFTP) site for the source information to be stored and the staging table to house the source information once the data is added to Dynamics 365 Finance. Information from the source will be transferred once a day from the source system and integrated with the target system. More than 10,000 records will be transferred over the integration. The company created an aggregate entity for the integration to minimize the amount of transmitted data.
Munson's Pickles and Preserves Farm has added a new integration for freight processing where all item weights, dimensions, and other factors will be configured in the external portal while planning the loads. Once the load is planned, it will be integrated into Dynamics 365 finance and operations apps for the freight invoice processing to occur.
No duplicate invoices or posting are associated with the freight invoice charges. The integration of this information from the source system is intended only for report creation and compilation purposes.
Current environment. Planned changes
Munson's Pickles and Preserves Farm wants to change inventory forms to fit its current needs. Any modifications or enhancements must follow the existing functionality for forms in Dynamics 365 Finance.
Requirements. Integrations -
All data from integrations have the same format as an existing Dynamics 365 Finance apps field. All enhancements or customizations must use existing assets before creating new functionality.
Munson's Pickles and Preserves Farm wants to change its integration strategy to include real-time data from the freight processing source system. The inventory must update as it is sold from the system. That information will be updated in Dynamics 365 Finance.
The freight processing integration requires the use of an SFTP site to store XML files from the source system. The additional integration will use OData and must be transferred in real time.
A periodic batch job must:
•	Pull data from the SFTP site.
•	Import the data to a staging table used to hold the information from the source system.
•	Map source data to the target table in Dynamics 365 Finance.
The imported Load ID field must be added to the Sales Order header for all processed orders. Additional requirements for integrations, including other integration strategies, may be necessary as the company grows. Existing tables must be changed to include the Load ID. The database will need to be synched before adding the Load ID field.
Requirements. Changes -
Munson's Pickles and Preserves Farm must change the Inventory Status form to include more columns. It plans to create a table to enter the data for the Inventory Status form as a new data source. The company wants to add both the Product Name field and Batch ID field to this new table. The current form includes the item number, location, license plate, product inventory dimensions, and quantity.
The grid on the Inventory Status form must include the product name by using the item number and legal entity. The user interface must be created to include the new columns and the data must be available to add to the grid. The form must have only an Action Pane, a Navigation List, a List Style Grid, a Details Header, and a Details Tab in the design and include the Load ID field.
Munson's Pickles and Preserves Farm is currently in the process of adding the other required fields: one for Product Name and one for Batch ID. The new fields must be related to extended data types for the original fields on the existing data source for the Inventory Status form. Munson's Pickles and Preserves Farm plans to add the EcoResProductName and Batch ID data to the extended table for WHSTmpStatusChange. The fields on the table extension must be populated with data and visible on the Inventory Status form on insert.
Issues -
•	The internal development team has created the SFTP site connections, the staging table, and the batch jobs for the new integration for freight processing. The development team needs to map the source data to the target table and the data management workspace. The development team notices errors with mapping target fields in the data management workspace. The team needs another developer to configure the table extensions, class extensions, and form extensions that are required for the planned changes.
•	The internal development team has issues adding the required fields to the Inventory Status standard form. The team needs another developer to configure the table extensions, class extensions, and form extensions that are required for the planned changes.
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.

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

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 in the designer. Add a string field named Product Name to the table. Add an enumeration named Batch ID to the table.

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

 


Suggested Answer: CD

 

Question 38

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.

 


Suggested Answer: CD

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.

Question 39

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 create a new form in a project.
You need to display tabs in a vertical alignment.
Solution: Apply the Details Master pattern.
Does the solution meet the goal?

A. Yes

B. No

 


Suggested Answer: A

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

Question 40

You are developing a model extension for Dynamics 365 Finance that extends objects from the Application Foundation package.
You need to create and configure a new model for the extension.
Which two actions should you perform? Each correct answer presents part of the solution.
NOTE: Each correct selection is worth one point.

A. Create an extension class that references the Application Foundation.

B. Assign the model to the USR layer.

C. Reference the Application Foundation package when creating the extension model.

D. Create a new model that builds into its own separate assembly.

E. Create a new model that is part of an existing package.

 


Suggested Answer: AD

A: You must create a class.
D: Extension lets you extend existing artifacts in a new model.
A model that contains only extension customizations can be compiled into its own assembly and be deployed in its own package.
Reference:
https://docs.microsoft.com/en-us/dynamics365/fin-ops-core/dev-itpro/extensibility/class-extensions
https://docs.microsoft.com/en-us/dynamics365/fin-ops-core/dev-itpro/dev-tools/model-split

Question 41

HOTSPOT -
You are a Dynamics 365 Finance developer.
You have the following entities.
 Image
You must create the required fields and relationships in the staging tables.
You need to develop a composite entity that uses the OrderHeader and OrderLine entities.
Which object should you use for each action? To answer, select the appropriate options in the answer area.
NOTE: Each correct selection is worth one point.
Hot Area:
 Image

 


Suggested Answer:
Correct Answer Image

Reference:
https://docs.microsoft.com/en-us/dynamics365/fin-ops-core/dev-itpro/data-entities/develop-composite-data-entities

Question 42

You are a Dynamics 365 Finance developer.
You have a table named FMVehicle that contains a field named VehicleId. The table has an index named VehicleIdIdx on the VehicleId field. You declare a table buffer named vehicle to refer to the table.
You need to select all records from the FMVehicle table in ascending order based on VehicleId field in the vehicle variable.
Which embedded-SQL statement should you use?

A. select vehicle index VehicleId;

B. select vehicle order by VehicleId;

C. select VehicleId from vehicle order by VehicleId asc;

D. select vehicle order by VehicleId desc;

 


Suggested Answer: B

Reference:
https://docs.microsoft.com/en-us/dynamics365/fin-ops-core/dev-itpro/dev-ref/xpp-data-query

Question 43

You develop apps for Dynamics 365 Supply Chain Management.
You need to track changes only for sales header information by using data entities.
Which change tracking option should you use?

A. Enable custom query

B. Enable entire entity

C. Enable primary table

D. Disable change tracking

 


Suggested Answer: A

 

Question 44

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. Modified date time

C. Configuration key

D. Table group

 


Suggested Answer: B

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 Image
Note: There are multiple versions of this question with different correct answers and various combinations of incorrect answers.
Other incorrect answers you may see in the exam include:
✑ Primary index
✑ Save data per company
✑ Clustered index
Reference: alt=”Reference Image” />
Note: There are multiple versions of this question with different correct answers and various combinations of incorrect answers.
Other incorrect answers you may see in the exam include:
✑ Primary index
✑ Save data per company
✑ Clustered index
Reference:
https://docs.microsoft.com/sv-se/dynamics365/fin-ops-core/dev-itpro/extensibility/modify-properties

Question 45

You are a Dynamics 365 Finance developer. You have the following Extended Data Types (EDTs):
 Image
You plan to modify properties of the EDTs by using an extension.
You need to determine which operations can be performed.
Which operation is possible?

A. Create a derived EDT for AccountId and decrease the field size.

B. Create an extension for AccountId and increase the field size.

C. Create an extension for AccountId and decrease the field size.

D. Create an extension for AccountBase and increase the field size.

 


Suggested Answer: B

There are several properties that can be customized on existing extended data types (EDTs) through extension:
You can only set the new String size to a value equal to or larger than the base EDT value.
Label –
Help text –
Form help –
Country region codes –
String size –
Incorrect:
Not D: You can only modify the value if the EDT does not extend from another EDT.
Reference:
https://docs.microsoft.com/en-us/dynamics365/fin-ops-core/dev-itpro/extensibility/modify-edt

Question 46

HOTSPOT
-
Case study
-
This is a case study. Case studies are not timed separately. You can use as much exam time as you would like to complete each case. However, there may be additional case studies and sections on this exam. You must manage your time to ensure that you are able to complete all questions included on this exam in the time provided.
To answer the questions included in a case study, you will need to reference information that is provided in the case study. Case studies might contain exhibits and other resources that provide more information about the scenario that is described in the case study. Each question is independent of the other questions in this case study.
At the end of this case study, a review screen will appear. This screen allows you to review your answers and to make changes before you move to the next section of the exam. After you begin a new section, you cannot return to this section.
To start the case study
-
To display the first question in this case study, click the Next button. Use the buttons in the left pane to explore the content of the case study before you answer the questions. Clicking these buttons displays information such as business requirements, existing environment, and problem statements. When you are ready to answer a question, click the Question button to return to the question.
Background
-
Munson's Pickles and Preserves Farm produces and sells jarred food goods. The organization has several production and warehouse locations across the United States. Each location runs both production and warehousing operations. The company has three locations: East, Central, and West.
The company is upgrading its Dynamics AX 2009 system to Dynamics 365 Finance.
Current environment. General
-
Munson's Pickles and Preserves Farm plans to migrate customizations, data, and integration from its legacy system into Dynamics 365 finance and operations apps.
The Dynamics 365 finance and operations environment includes:
•	multiple cloud-hosted development environments using Microsoft Visual Studio 2017
•	a Microsoft Azure DevOps project for source control
•	two tier 2 environments for user acceptance testing and staging, as well as production
Munson's Pickles and Preserves Farm is currently in the planning and development phase of the upgrade process. The company's internal development team needs additional development resources to address issues. The company already created a project that is set up to use a custom model named GPExtensions.
Current environment. Integrations
Munson's Pickles and Preserves Farm has a new integration for its freight processing information. The internal development team created the secure file transfer protocol (SFTP) site for the source information to be stored and the staging table to house the source information once the data is added to Dynamics 365 Finance. Information from the source will be transferred once a day from the source system and integrated with the target system. More than 10,000 records will be transferred over the integration. The company created an aggregate entity for the integration to minimize the amount of transmitted data.
Munson's Pickles and Preserves Farm has added a new integration for freight processing where all item weights, dimensions, and other factors will be configured in the external portal while planning the loads. Once the load is planned, it will be integrated into Dynamics 365 finance and operations apps for the freight invoice processing to occur.
No duplicate invoices or posting are associated with the freight invoice charges. The integration of this information from the source system is intended only for report creation and compilation purposes.
Current environment. Planned changes
Munson's Pickles and Preserves Farm wants to change inventory forms to fit its current needs. Any modifications or enhancements must follow the existing functionality for forms in Dynamics 365 Finance.
Requirements. Integrations
-
All data from integrations have the same format as an existing Dynamics 365 Finance apps field. All enhancements or customizations must use existing assets before creating new functionality.
Munson's Pickles and Preserves Farm wants to change its integration strategy to include real-time data from the freight processing source system. The inventory must update as it is sold from the system. That information will be updated in Dynamics 365 Finance.
The freight processing integration requires the use of an SFTP site to store XML files from the source system. The additional integration will use OData and must be transferred in real time.
A periodic batch job must:
•	Pull data from the SFTP site.
•	Import the data to a staging table used to hold the information from the source system.
•	Map source data to the target table in Dynamics 365 Finance.
The imported Load ID field must be added to the Sales Order header for all processed orders. Additional requirements for integrations, including other integration strategies, may be necessary as the company grows. Existing tables must be changed to include the Load ID. The database will need to be synched before adding the Load ID field.
Requirements. Changes
-
Munson's Pickles and Preserves Farm must change the Inventory Status form to include more columns. It plans to create a table to enter the data for the Inventory Status form as a new data source. The company wants to add both the Product Name field and Batch ID field to this new table. The current form includes the item number, location, license plate, product inventory dimensions, and quantity.
The grid on the Inventory Status form must include the product name by using the item number and legal entity. The user interface must be created to include the new columns and the data must be available to add to the grid. The form must have only an Action Pane, a Navigation List, a List Style Grid, a Details Header, and a Details Tab in the design and include the Load ID field.
Munson's Pickles and Preserves Farm is currently in the process of adding the other required fields: one for Product Name and one for Batch ID. The new fields must be related to extended data types for the original fields on the existing data source for the Inventory Status form. Munson's Pickles and Preserves Farm plans to add the EcoResProductName and Batch ID data to the extended table for WHSTmpStatusChange. The fields on the table extension must be populated with data and visible on the Inventory Status form on insert.
Issues
-
•	The internal development team has created the SFTP site connections, the staging table, and the batch jobs for the new integration for freight processing. The development team needs to map the source data to the target table and the data management workspace. The development team notices errors with mapping target fields in the data management workspace. The team needs another developer to configure the table extensions, class extensions, and form extensions that are required for the planned changes.
•	The internal development team has issues adding the required fields to the Inventory Status standard form. The team needs another developer to configure the table extensions, class extensions, and form extensions that are required for the planned changes.
You need to design integrations for the freight processing source system.
Which integration strategies should you implement? To answer, select the appropriate options in the answer area.
NOTE: Each correct selection is worth one point.
 Image

 


Suggested Answer:
Correct Answer Image

 

Question 47

You are implementing Dynamics 365 Supply Chain Management for a customer.
The complete solution involves an ISV product that was obtained from Microsoft AppSource.
You notice that there is a significant slowdown in certain screens once the ISV product is installed.
You need to determine the cause of the issue.
Which Lifecycle Services (LCS) tool or functionality should you use?

A. SQL Server Runtime

B. SQL Insights

C. Regression suite automation tool (RSAT)

D. Impact analysis report

E. Issue search

 


Suggested Answer: B

SQL insights. The Monitoring and diagnostics portal also includes advanced SQL troubleshooting tools to enable performance analysis.
All SQL performance tools in LCS are available under the SQL Insights tab on the Environment Monitoring page for a specific environment.
Lifecycle Services (LCS) tools include:
Reference Image
Reference: alt=”Reference Image” />
Reference:
https://docs.microsoft.com/en-us/dynamics365/fin-ops-core/dev-itpro/lifecycle-services/monitoring-diagnostics

Question 48

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?

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

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

C. A retailer wants to ensure gift card balances are communicated back to the system from point of sale (POS) terminals in near real-time.

D. A retailer requires all new customer data captured at point of sale (POS) terminals through the day sent back to the system.

 


Suggested Answer: D

 

Question 49

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 a customization.
Does the solution meet the goal?

A. Yes

B. No

 


Suggested Answer: B

Instead navigate to the user interface forms section for the SalesTable form and create an extension.
Note: 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/

Question 50

You are developing a model extension for Dynamics 365 Finance.
You must create a model extension that extends objects from the Application suite package.
You need to create and configure a new model for the extension.
Which two actions should you perform? Each correct answer presents part of the solution.
NOTE: Each correct selection is worth one point.

A. Assign a model to the VAR layer.

B. Create a new model and add a reference to the Application Suite package.

C. Create an extension class that references a class that exists in the Application Suite.

D. Create a new model that is part of an existing Application Suite package.

 


Suggested Answer: BC

 

Free Access Full MB-500 Practice Questions Free

Want more hands-on practice? Click here to access the full bank of MB-500 practice questions free and reinforce your understanding of all exam objectives.

We update our question sets regularly, so check back often for new and relevant content.

Good luck with your MB-500 certification journey!

Share18Tweet11
Previous Post

MB-330 Practice Questions Free

Next Post

MB-700 Practice Questions Free

Next Post

MB-700 Practice Questions Free

MB-800 Practice Questions Free

MD-100 Practice Questions Free

Leave a Reply Cancel reply

Your email address will not be published. Required fields are marked *

Recommended

Network+ Practice Test

Comptia Security+ Practice Test

A+ Certification Practice Test

Aws Cloud Practitioner Exam Questions

Aws Cloud Practitioner Practice Exam

Comptia A+ Practice Test

  • About
  • DMCA
  • Privacy & Policy
  • Contact

PracticeTestFree.com materials do not contain actual questions and answers from Cisco's Certification Exams. PracticeTestFree.com doesn't offer Real Microsoft Exam Questions. PracticeTestFree.com doesn't offer Real Amazon Exam Questions.

  • Login
  • Sign Up
No Result
View All Result
  • Quesions
    • Cisco
    • AWS
    • Microsoft
    • CompTIA
    • Google
    • ISACA
    • ECCouncil
    • F5
    • GIAC
    • ISC
    • Juniper
    • LPI
    • Oracle
    • Palo Alto Networks
    • PMI
    • RedHat
    • Salesforce
    • VMware
  • Courses
    • CCNA
    • ENCOR
    • VMware vSphere
  • Certificates

Welcome Back!

Login to your account below

Forgotten Password? Sign Up

Create New Account!

Fill the forms below to register

All fields are required. Log In

Retrieve your password

Please enter your username or email address to reset your password.

Log In

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.