Updated Apr-2023 Premium MB-500 Exam Engine pdf - Download Free Updated 181 Questions [Q35-Q58]

Share

Updated Apr-2023 Premium MB-500 Exam Engine pdf - Download Free Updated 181 Questions

Authentic MB-500 Dumps With 100% Passing Rate Practice Tests Dumps


The Microsoft MB-500 exam is designed for professionals who want to validate their skills in developing and implementing Microsoft Dynamics 365 Finance and Operations apps. This certification exam is intended for developers who work with Dynamics 365 Finance and Operations applications to customize and extend them. The MB-500 exam tests the candidate's knowledge of concepts such as developing, testing, and deploying code and other artifacts in Dynamics 365 Finance and Operations environments.

 

NEW QUESTION # 35
A company has a Dynamics 365 Finance and Operations environment.
You need to implement indices for new tables.
Which types of indexes should you use? To answer, drag the appropriate types of indexes to the correct requirements. Each type of index 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/sql/relational-databases/indexes/clustered-and-nonclustered-indexes-described


NEW QUESTION # 36
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 # 37
You are a Dynamics 365 Finance developer. You have the following Extended Data Types (EDTs):

You plan to modify the EDT properties 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 AccountBase and decrease the field size.
  • D. Create an extension for AccountBase and increase the field size.

Answer: D

Explanation:
Explanation
You can only set the new String size to a value equal to or larger than the base EDT value.
Reference:
https://docs.microsoft.com/en-us/dynamics365/fin-ops-core/dev-itpro/extensibility/modify-edt


NEW QUESTION # 38
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:
Explanation
https://docs.microsoft.com/en-us/dynamics365/fin-ops-core/dev-itpro/user-interface/workspace-form-pattern


NEW QUESTION # 39
You need to prepare to deploy a software deployable package to a test environment. 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 Visual Studio, create a Dynamics 365 deployment package and upload the package to the as
  • B. In Visual Studio, export the project and upload the project to the asset library.
  • C. In Azure DevOps, queue a build from the corresponding branch and upload the package to the asset library.
  • D. In Azure DevOps, queue a build from the corresponding branch and upload the model to the asset library.

Answer: B,D


NEW QUESTION # 40
You are Dynamics 365 Finance developer.
You need to explain the performance advantages of the different concurrency models.
What are three performance advantages of optimistic concurrency control over pessimistic concurrency control? Each correct answer presents a complete solution.
NOTE: Each correct selection is worth one point.

  • A. Records remain available for other processes while they are selected from the database.
  • B. Records are locked as soon as they are retrieved from the database.
  • C. Records are locked for a shorter length of time.
  • D. Fewer resources are used to lock records during updates.
  • E. One record cannot be selected for update by two different processes at the same time.

Answer: A,C,D

Explanation:
Optimistic Concurrency only locks records from the time when the actual update is performed.
Following are the advantages of using OCC:
Records remain available for other processes to update if they have been selected from the database but haven't yet been updated.
Records are locked for a shorter length of time.
Fewer resources are used to hold the locks during the update process.
Incorrect Answers:
A: Pessimistic Concurrency Control locks records as soon as they are fetched from the database for an update.
E: One record can be selected for update by two different processes at the same time when using OCC.
Reference:
https://docs.microsoft.com/en-us/dynamicsax-2012/developer/optimistic-concurrency-control


NEW QUESTION # 41
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:


NEW QUESTION # 42
You are a Dynamics 365 Finance developer.
You make changes to an existing class.
You need to compare the code that is in source control with the updated class. In Visual Studio, you display Team Explorer.
What are three possible ways to achieve the goal? Each correct answer presents a complete solution.
NOTE: Each correct selection is worth one point.

  • A. Run the tf diff command.
  • B. In Team Explorer, select Compare Files.
  • C. In Team Explorer, select Compare with Workspace Version.
  • D. In Team Explorer, select Compare with Latest Version.
  • E. Run the vsdiffmerge command.

Answer: A,C,D

Explanation:
Example:
In Team Explorer, right-click FMRental.xml, and select Compare with Latest Version.

Choose Compare with Latest Version to see how the changes you have made compare to the latest version of the file on your Team Foundation Server.
Choose Compare with Workspace Version to see what changes you have made to the version you checked out.
D: The diff tool of Visual Studio is very good to compare two files.
It compares, and if it is possible, displays differences between two files, files in two folders, or a shelveset and a local or a server file.
Syntax:
tf diff[erence] itemspec [/version:versionspec] [/type:filetype]
[/format:format [/ignorespace] [/ignoreeol] [/ignorecase] [/recursive]
[/options][/noprompt][/login:username,[password]]
Incorrect Answers:
E: vsdiffmerge is used for merging.
Reference:
https://docs.microsoft.com/en-us/azure/devops/repos/tfvc/difference-command


NEW QUESTION # 43
You develop a customization for Dynamics 365 Supply Chain Management.
You need to optimize performance for this customization.
Which concurrency control options should you implement? To answer, select the appropriate options in the answer area.
NOTE: Each correct selection is worth one point.

Answer:

Explanation:


NEW QUESTION # 44
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. Option C
  • B. Option D
  • C. Option B
  • D. Option A

Answer: A,B,D

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


NEW QUESTION # 45
A company implements Dynamics 365 finance and operations apps.
You are developing code to consume OData service endpoints. You complete the application registration process and gather the details required to create a C# console application.
You need to ensure that the console application interacts with Dynamics 365 Finance OData services.
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:

1 - Add the OData v4 client code generator
2 - Add the custom OData service endpoints to the ODataClient list
3 - Generate proxy classes
4 - Point the MetaDataDocumentURI variable top the Dynamics 365 Finance instance Reference:
https://devblogs.microsoft.com/odata/tutorial-sample-how-to-use-odata-client-code-generator-to-generate-client-side-proxy-class/
https://www.netwoven.com/2018/05/29/how-to-create-client-side-odata-proxy-dll-for-microsoft-dynamics-365-for-finance-and-operations-ax/


NEW QUESTION # 46
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:

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 # 47
You must extend CarType and add a new element named MUV to CarType.
You need to develop a solution that meets the requirements.
Solution: Set the is Extensible property to false for the CarType enumeration. Create a new enumeration to add the MUV element.
Does the solution meet the goal?

  • A. Yes
  • B. No

Answer: B


NEW QUESTION # 48
You are a Dynamics 365 Finance and Operations developer.
You have a report in an existing model that connects with the following objects:
in-memory table
data provider class
controller class
contract class
The report is locked for modifications.
You need to create an extension of the in-memory table in a model and you add the new field to the extension.
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:


NEW QUESTION # 49
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. Build Models options
  • C. Application Explorer
  • D. Solution Explorer
  • E. Package deployment

Answer: D,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 # 50
You are a Dynamics 365 Finance developer. You make changes to an existing custom class.
The code comparison tool shows version conflicts between your version and the latest checked-in version of the custom class.
In Visual Studio, you open the Source Control Explorer. You locate the latest changeset for the class and you open the changeset in Team Explorer.
You need to compare the latest code that is in source control with the code that you created.
Which option should you use?

  • A. Compare with Latest Version
  • B. Compare with Previous Version
  • C. Compare with Workspace Version
  • D. View History

Answer: A

Explanation:
Reference:
https://docs.microsoft.com/en-us/azure/devops/repos/tfvc/compare-files?view=azure-devops


NEW QUESTION # 51
You are a Dynamics 365 Finance and Operations developer.
You have a report in an existing model that connects with the following objects:
* in-memory table
* data provider class
* controller class
* contract class
The report is locked for modifications.
You need to create an extension of the in-memory table in a model and you add the new field to the extension.
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:


NEW QUESTION # 52
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 # 53
You are a Dynamics 365 Finance 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. Build Models options
  • C. Application Explorer
  • D. Solution Explorer
  • E. Package deployment

Answer: D,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 # 54
You are Dynamics 365 Finance developer.
You need to initialize an embedded Microsoft Power Bl report.
Which code segment should you add to the form initialization method?

  • A. initializeReportControlInternal(powerBIConfiguration, reportparameters, reportControl, showError)
  • B. deployorUpdateReport(powerBIConfiguration, reportName, resourceName)
  • C. addReportControl(formGroupControl)
  • D. InitializeReportControl(workspaceName, Formgroup)

Answer: A

Explanation:
PBIReportHelper.initializeReportControl method is used to embed a Power BI report (.pbix resource) in a form group control.
Reference:
https://docs.microsoft.com/en-us/dynamics365/fin-ops-core/dev-itpro/analytics/add-analytics-tab-workspaces?toc=%2Ffin-and-ops%2Ftoc.json


NEW QUESTION # 55
You are a Dynamics 365 Finance developer.
A report uses a synchronous call based on a saleID value. There are long wait times for the report to complete printing. You must allow the user to continue to work while the report processes and inform the user immediately when the report completes printing.
You need to implement the correct method calls and behavior.
Which code segments should you use? To answer, select the appropriate options in the answer area.
NOTE: Each correct selection is worth one point.

Answer:

Explanation:

Explanation:
Box 1: Global:runAsync
Use runAsync methods on the Global or FormRun classes.
Box 2: container
Reference:
https://docs.microsoft.com/en-us/dynamics365/fin-ops-core/dev-itpro/migration-upgrade/deprecated-apis
Topic 1, First Up Consultants
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 studios 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 m 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
First Up Consultants provides Commercial Cleaning services to its clients. The company purchases all its cleaning supplies from Best For You Organics Company.
First Up Consultants is using a cloud-based Dynamics 365 Finance instance. The system has a foundation table named CashDisc that contains one cash discount record for each cash discount type.
Best For You Organics Company invoices First Up Consultants and allows cash discounts based on how fast an invoice is paid. First Up Consultants is entitled to a two percent discount from Best for You Organics for any invoice that is paid within 10 days and has a minimum invoice amount of $2,500.
Business Requirements
All new and extended objects must be located in an existing model named FinanceExt. The creation of new models is not permitted.
Best For You Organics Company requires that First Up Consultants apply specific minimum invoice amounts to each cash discount record. A cash discount may only be applied when the minimum invoice amount requirement has been met. The new field must be added to the CashDisc form grid with the allowable visible number of characters set to 10.
First Up Consultants must retrieve the required Cash Discount methods and corresponding minimum invoice amounts directly from Best For You Organics Company's enterprise resource planning (ERP) system.
The Chief Financial Officer (CFO) requires the following reports:
A report that shows all outstanding invoices, their cash discount types including the new minimum threshold applicable, and the amount of the discount. The report must only be accessed by users who are members of the Accounts Payable Manager role.
You must create a Microsoft Excel workbook that lists unpaid invoices to Best For You Organics Company that have a due date earlier than 5/1/2019 and an Invoice Amount between $20,000 and $100,000.
Cash discounts for unpaid invoices must be updated with the new minimum invoice amounts.
Technical Requirements
You must be able to filter the grid on the Vendor Invoices Past Due form. By default, you must filter the form based on the Due Date, Invoice Amount, and Vendor columns. Users must be able to apply reusable user-specific filters to a page using multiple fields.
CashDisc form
You must extend the CashDisc form to add a new field named MinimumlnvoiceAmount to the form. You must add a new Extended Data Type to the extension model for the new field. The new field must be added above the discount method field. The field must display 10 characters.
The accounts payable manager and the accounts payable clerk have Delete access to the form. You must alter permissions to limit accounts payable clerks to have only View access to the form.
Cash Discount Records report
You must create a report that shows a list of CashDisc records. You must include the MinimumlnvoiceAmount field and filtered data by using the CashDisc.DiscMethod field. Applicable security objects must be created in the existing "FinanceExt" model and configured so the report is accessible by those users mapped to the accounts payable role.
Batch jobs
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:
* Accept the following parameters: Vendor, DueDate.
* Be callable by an Action menu item.
* Allow users to specify vendors to include in the job.
You must create a batch job to identify modified CashDisk MinimumInvoiceAmount values and apply these to open Purchase Lines.


NEW QUESTION # 56
A user reports that a form takes a long time to load. You suspect that the issue relates to a display method.
You need to resolve the issue.
Which actions should you perform? To answer, select the appropriate options in the answer area.
NOTE: Each correct selection is worth one point.

Answer:

Explanation:

Explanation:
Box 1: Yes
The caching will avoid executing the display method unnecessarily.
To improve the performance of a display method, you can cache the method.
Box 2: No
Box 3: No
Box 4: No
Reference:
https://docs.microsoft.com/en-us/dynamicsax-2012/developer/using-the-display-method-modifier


NEW QUESTION # 57
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. Build Models options
  • C. Application Explorer
  • D. Solution Explorer
  • E. Package deployment

Answer: D,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 # 58
......

Verified Pass MB-500 Exam in First Attempt Guaranteed: https://actualtests.vceprep.com/MB-500-latest-vce-prep.html