[Mar-2022] MB-500 Exam Dumps - Free Demo & 365 Day Updates [Q23-Q47]

Share

[Mar-2022] MB-500 Exam Dumps - Free Demo & 365 Day Updates

Free Sales Ending Soon - Use Real MB-500 PDF Questions


Target Audience and Prerequisites

One of the first things that you need to know about the Microsoft MB-500 exam is that it is designed for those developers who work with Operations & Finance apps within Microsoft Dynamics 365. There are quite a few skills that the candidates need to develop before attempting this test and some of them are as follows: implementing permission policies & security requirements; creating technical designs as well as implementation details; analyzing and manipulating data; monitoring performance; performing testing; customizing user interfaces; developing business login with the help of X++.

To be eligible for this certification exam, the students also need to have knowledge and experience with data structures & frameworks. In addition, they should be conversant with technologies, such as SQL Server Management Studio, LCS tools, Azure DevOps, and Visual Studio.

 

NEW QUESTION 23
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: Add a new form object to the project and name the form SalesTable.Extension.
Does the solution meet the goal?

  • A. No
  • B. Yes

Answer: A

Explanation:
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/

 

NEW QUESTION 24
You are a Dynamics 365 Finance developer for a company that sells pre-owned vehicles. When the company acquires a new vehicle, vehicle identification (VIN) numbers are added to the VIN field in the CustTable.
You need to create an event handler to validate that new VIN values are at least 10 characters long. Validation must occur when records are saved.
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.

Answer:

Explanation:

Explanation:
Step 1: Add the event handler method to a class.
Step 2: Copy the validateWrite event handler on the CustTable object.
validateWrite is published Table method. ValidatingWriting is the preceeding event.
Step 3: Add code to perform the validation.
Incorrect Answers:
validatingWrite is not a published Table method.
Reference:
https://docs.microsoft.com/en-us/dynamics365/fin-ops-core/dev-itpro/extensibility/customization-overlayering-extensions

 

NEW QUESTION 25
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?

  • A. Open the object in Object Designer, select the title of the object, and then right-click View History.
  • B. Using Visual Studio, navigate to the object. Add the object to a new solution, and then right-click View History.
  • C. In Solution Explorer, navigate to the object and right-click View History.
  • D. Using Visual Studio, navigate to the object in Application Explorer and right-click View History.

Answer: D

Explanation:
In Visual Studio, Go to source control explorer > Select the object > right click > View history Reference:
https://dynamicsuser.net/ax/f/developers/93354/how-to-rollback-a-change-set-completely-automatically-in-tfs

 

NEW QUESTION 26
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 retailer requires all new customer data captured at point of sale (POS) terminals through the day sent back to the system.
  • 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 warehouse wants to track movement of all inventory from scanners to the system.

Answer: A

Explanation:
Reference:
https://docs.microsoft.com/en-us/dynamics365/fin-ops-core/dev-itpro/data-entities/integration-overview#synchronous-vs-asynchronous-integration-patterns

 

NEW QUESTION 27
You have the following code:

For each of the following statements, select Yes if the statement is true. Otherwise, select No.
NOTE: Each correct selection is worth one point.

Answer:

Explanation:

Explanation:
Box 1: Yes
Add 1 to a date adds one day.
Box 2: No
You cannot do a real2int conversion on a Date.
Reference:
https://docs.microsoft.com/en-us/dynamics365/customerengagement/on-premises/customize/types-of-fields

 

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

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

Answer: C,D

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

 

NEW QUESTION 29
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. Yes
  • B. No

Answer: A

Explanation:
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

 

NEW QUESTION 30
You have the following class definition:

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.

Answer:

Explanation:

Explanation:
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

 

NEW QUESTION 31
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: Add a new form object to the project and name the form SalesTable.Extension.
Does the solution meet the goal?

  • A. No
  • B. Yes

Answer: A

 

NEW QUESTION 32
A company is migrating from a legacy system to Dynamics 365 Unified Operations.
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.

Answer:

Explanation:

Explanation:
Step 1: Create a new import project.
Step 2: Specify the project category for the import.
Step 3: Specify the Source Data Format.
Step 4: Specify the target entity.
Step 5: Import the source file to the project.
The import process is done through the Import tile in the Data Management workspace.
Import a data package
* Log into the environment using a login with sufficient privileges (typically this is the Administrator role).
* On the dashboard, click the Data Management workspace.
* Click the Import tile.
* 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

 

NEW QUESTION 33
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 Entity store
  • C. a data entity and a Data management import job
  • D. a public data entity and the Excel add-in

Answer: A,B

 

NEW QUESTION 34
You are a Dynamics 365 Finance developer for a company that sells pre-owned vehicles. When the company acquires a new vehicle, vehicle identification (VIN) numbers are added to the VIN field in the CustTable.
You need to create an event handler to validate that new VIN values are at least 10 characters long. Validation must occur when records are saved.
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.

Answer:

Explanation:

Explanation:
Step 1: Add the event handler method to a class.
Step 2: Copy the validateWrite event handler on the CustTable object.
validateWrite is published Table method. ValidatingWriting is the preceeding event.
Step 3: Add code to perform the validation.
Incorrect Answers:
validatingWrite is not a published Table method.
Reference:
https://docs.microsoft.com/en-us/dynamics365/fin-ops-core/dev-itpro/extensibility/customization-overlayering-extensions

 

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 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 36
You are a Dynamics 365 Finance developer. You have a solution that records product weights. You must store up to four decimals of precision by using a standard Extended Data Type (EDT). You need to add the field in a new table.
Which EDT should you extend?

  • A. Weight
  • B. AmountMST
  • C. WeightBase
  • D. MarkupValue

Answer: C

Explanation:
Explanation
Weight data can be maintained with a maximum of two decimals by default. If you require the ability to enter, maintain, and view weight data with a maximum precision of six decimals, you must extend the decimal point precision for the WeightBase extended data type.
Reference:
https://docs.microsoft.com/en-us/dynamics365/fin-ops-core/dev-itpro/extensibility/decimal-point-precision

 

NEW QUESTION 37
You are a Dynamics 365 Finance and Operations 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 tile
  • B. a factbox
  • C. a quick filter
  • D. a custom lookup
  • E. an external feed

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 38
You have the following class definition:

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.

Answer:

Explanation:

Reference:
https://docs.microsoft.com/en-us/dynamics365/fin-ops-core/dev-itpro/extensibility/method-wrapping-coc

 

NEW QUESTION 39
You are a Dynamics 365 Finance developer.
Users must be able to view a filtered customer list from within a workspace.
You need to add the customer form to a workspace.
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 on the correct order.

Answer:

Explanation:

Explanation:
Step 1:Open the customer form and apply filters to the grid.
To add a list to a workspace, first sort or filter the list on the page so that it shows the information as you want it to appear in the workspace.
Step 2: Select the General menu item then select Add to workspace
This workspace will be selected in step 3.
Step 3: Select the Options actions pane tab and then select Add to workspace.
For some pages that include lists, the Add to workspace personalization feature is available in the Personalize group on the Options tab of the Action Pane. This feature lets you push relevant information from the current list to a specific workspace.


Step 4: Select Configure
After you select Configure, a dialog box appears, where you can select the columns that should appear in the list in the workspace.
Reference:
https://docs.microsoft.com/en-us/dynamics365/fin-ops-core/fin-ops/get-started/personalize-user-experience

 

NEW QUESTION 40
You are a Dynamics 365 Finance developer.
You need configure table caching.
Which CacheLookup properties should you use? To answer, drag the CacheLookup properties to the correct table. Each property 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:

Parameters: EntireTable
Transaction: NotInTTS
Master Data: Found
Region specific master data: FoundAndEmpty
Explanation:
https://community.dynamics.com/365/financeandoperations/b/performancetipsandtricks/posts/dynamics-365-for-finance-and-operations-table-caching-basic-rules#:~:text=Entire%20table%20cache%20size%20determines,365%20for%20Finance%20and%20Operations.&text=Each%20AOS%20server%20can%20have%20its%20own%20cache%20settings.

 

NEW QUESTION 41
You are Dynamics 365 Finance developer.
You need to use the Extensible Data Security (XDS) framework to restrict access to the data in the Sales table from based on the customer group and the role of the user.
Which four actions should you perform in sequence? To answer, move the appropriate actions from the list of the actions to the answer area and arrange them in the correct order.

Answer:

Explanation:

1 - Define the list of constrained tables.
2 - Assign the newly created role to the user.
3 - Create new user role and add required privileges.

 

NEW QUESTION 42
You are a Dynamics 365 Finance and Operations developer.
Users are experiencing slower load times for the All Customers form.
You need to update caching for CustTable to improve data retrieval times.
How should you configure CacheLookup properties? To answer, select the appropriate options in the answer area.
NOTE: Each correct selection is worth one point.

Answer:

Explanation:

Explanation:
Box 1: Entire table
In Microsoft Dynamics AX, groups of records can be cached all at once with set-based caching. Set-based caching can be implemented in two ways:
At design time, by setting the table's CacheLookup property to EntireTable.
In code, by using the RecordViewCache class.
Box 2: Found
Record caching is enabled for a table when all the following statements are true:
The CacheLookup property on the table is enabled by setting it to one of the following values:
NotInTTS, Found, FoundAndEmpty.
The record buffer disableCache method has not been called with a parameter of true.
Reference:
https://docs.microsoft.com/en-us/dynamicsax-2012/developer/set-based-caching
https://docs.microsoft.com/en-us/dynamicsax-2012/developer/single-record-caching

 

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

Answer:

Explanation:

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

 

NEW QUESTION 44
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. Advanced Filter
  • B. Grid Column Filtering
  • C. QuickFilter
  • D. Filter pane

Answer: B,C

Explanation:
A: QuickFilter: A framework-provided filtering mechanism that can appear above any list or grid, and that provides fast single-column filtering.
C: Grid column filtering: The user can define filter conditions and perform single-column sorting by using a drop dialog that is opened from the grid column header.
Scenario: You must create a batch job that runs on the last day of each month to update the current unpaid invoices with changes in the minimum invoice amount. The job must meet the following requirements:
* Allow users to specify vendors to include in the job.
* Accept the following parameters: Vendor, DueDate.
* Be callable by an Action menu item.
* Use SysOperation Framework for all batch jobs.
Reference:
https://docs.microsoft.com/en-us/dynamics365/fin-ops-core/dev-itpro/user-interface/filtering Plan Architecture and Solution Design Question Set 3

 

NEW QUESTION 45
You are creating entities that will have unmapped fields.
You need determine which types of unmapped fields to use.
Which field types should you use? To answer, drag the appropriate field types to the correct requirements.
Each field type 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:

Explanation

Box 1: Computed
Computed field: Value is generated by an SQL view computed column.
During read, data is computed by SQL and is fetched directly from the view.
Box 2: Computed
Box 3: Virtual
Virtual field:
Is a non-persisted field.
Is controlled by custom X++ code.
Read and write happens through custom X++ code.
Virtual fields are typically used for intake values that are calculated by using X++ code and can't be replaced by computed columns.
Box 4: Virtual
Virtual field is a non-persisted field.
Reference:
https://docs.microsoft.com/en-us/dynamics365/fin-ops-core/dev-itpro/data-entities/data-entity-computed-column

 

NEW QUESTION 46
A company has a cloud-based Dynamics 365 Finance environment and uses an e-commerce website for retail operations. The website has business to business (B2B) capabilities. The company uses a middleware integration tool to process data.
You must create a batch job to automate some operations. The batch job must be able to process several thousand transactions in each run.
You need to configure the environment.
Which tools should you use? To answer, drag the appropriate tools to the correct requirements. Each tool 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/dev-itpro/data-entities/recurring-integrations
https://docs.microsoft.com/en-us/dynamics365/fin-ops-core/dev-itpro/data-entities/data-management-api

 

NEW QUESTION 47
......


Microsoft MB-500 Exam Syllabus Topics:

TopicDetails

Plan architecture and solution design (10-15%)

Identify the major components of Dynamics 365 Finance and Operations apps- identify the Finance and Operations app modules required for a solution based on business requirements
- identify architectural differences between the cloud and on-premises versions of Finance and Operations apps
- identify components of the application
- differentiate the purposes and interrelationships between packages, projects, models, and elements
Design and implement a user interface- describe the Finance and Operations user interface layouts and components
- design the workspaces
- design and personalize user interface elements including grids, forms, and pages
- configure filtering options
Implement Application Lifecycle Management (ALM) and Lifecycle Services (LCS)- describe the capabilities of the Environment Monitoring Tool within Lifecycle Services (LCS)
- select the purpose and appropriate uses of LCS tools and components
- research and resolve issues by using Issue Search
- identify activities that require asset libraries
- prepare deployment packages and deploy packages

Apply Developer Tools (10-15%)

Customize Finance and Operations apps by using Visual Studio- create extension models
- design and build projects
- manage metadata using Application Explorer
- synchronize data dictionary changes with the application database
- create elements by using the Element Designer
Manage source code and artifacts by using version control- create, check out, and check in code and artifacts
- branch and merge code
- compare code and resolve version conflicts
Implement Finance and Operations app framework functionality- implement the SysOperation framework
- implement the asynchronous framework
- implement the workflow framework
- implement the unit test framework
- identify the need for and implement the Sandbox framework

Design and develop AOT Elements (20-25%)

Create forms- add a new form to a project and apply a pattern (template)
- configure a data source for the form
- add a grid and grid fields, groups, and other controls to a form
- create and populate menu items
- test form functionality and data connections
- add a form extension to a project for selected standard forms
Create and extend tables- add tables to a project
- add table fields and field properties to a table
- add a table extension to a project for a table
- add fields groups, relations, delete actions, and indices
Create Extended Data Types (EDT) and enumerations- add an EDT to a project and populate EDT properties
- add an enumeration to a project
- add or update enumeration elements and enumeration element properties
- add an extension of EDT and enumerations
Create classes and extend AOT elements- add a new class to a project
- create a new class extension and add new methods
- add event handler methods to a class

Develop and test code (10-15%)

Develop X++ code- identify and implement base types and operators
- implement common structured programming constructs of X++
- create, read, update, and delete (CRUD) data
- identify and implement global functions in X++
- implement table and form methods
Develop object-oriented code- implement X++ variable scoping
- implement inheritance and abstraction concept
- implement query objects and the QueryBuilder class
- implement attribute classes
- implement chain of command

Implement reporting (10-15%)

Describe the capabilities and limitations of reporting tools in Dynamics 365 Finance and Operations apps- create and modify report data sources and supporting classes
- implement reporting security requirements
- describe the report publishing process
- describe the differences between using Entity store and Bring your own database (BYOD) as reporting data stores
Design, create, and revise Dynamics reports- create and modify reports in Finance and Operations apps that use SQL Server Reporting Services (SSRS)
- create and modify Finance and Operations apps reports by using Power BI
- create and modify Finance and Operations apps reports FO by using Microsoft Excel
Design, create, and revise Dynamics workspaces- design KPIs
- create drill-through workspace elements
- implement built-in charts, KPIs, aggregate measurement, aggregate dimension, and other reporting components

Integrate and manage data solutions (10-15%)

Identify data integration scenarios- select an appropriate data integration API
- identify differences between synchronous vs. asynchronous patterns
Implement data integration concepts and solutions- develop a data entity by using Visual Studio
- develop, import, and export composite data entities
- identify and manage unmapped fields in data entities
- consume external web services by using OData and RESTful APIs
- integrate Finance and Operations apps with Microsoft Excel by using OData
- develop and integrate Power Automate and Power Apps
Implement data management- import and export data using entities between Finance and Operations apps and other systems
- monitor the status and availability of entities
- enable Entity Change Tracking
- set up a data project and recurring data jobs
- design entity sequencing
- generate field mapping between source and target data structures
- develop data transformations

Implement security and optimize performance (10-15%)

Implement role-based security policies and requirements- create or modify duties, privileges, permissions, and roles
- enforce permissions policies
- implement record-level security by using Extensible Data Security (XDS)
Apply fundamental performance optimization techniques- identify and apply caching mechanisms for forms and tables
- implement the global cache
- create or modify temporary tables for optimization purposes
- determine when to use set-based queries and row-based queries
- modify queries to optimize performance
- modify variable scope to optimize performance
- analyze and optimize concurrency

 

MB-500 Dumps - Pass Your Certification Exam: https://testinsides.actualpdf.com/MB-500-real-questions.html