MB-500試験無料問題集「Microsoft Dynamics 365: Finance and Operations Apps Developer 認定」
You need to create an extension of the table and perform a build and synchronize the newly extended table.
Which three actions should you perform in sequence? to answer, move the appropriate actions from the list of actions to the answer area and arrange them in the correct order.

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.

正解:

Explanation:

Note: This question is part of a series of questions that present the same scenario. Each question in the series contains a unique solution that might meet the stated goals. Some question sets might have more than one correct solution, while others might not have a correct solution.
After you answer a question in this section, you will NOT be able to return to it. As a result, these questions will not appear in the review screen.
You are developing a form for Dynamics 365 Finance.
You need to add a button that allows users to run a report.
Solution: Create 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?
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?
正解:B
解答を投票する
解説: (GoShiken メンバーにのみ表示されます)
A company requires a change to one of the base Microsoft SQL Server Reporting Services (SSRS) reports.
The report must include a new field that automatically filters the report based on the user who opens the report.
You need to add the new field as specified.
What should you do? To answer, select the appropriate options in the answer area.
NOTE: Each correct selection is worth one point.

The report must include a new field that automatically filters the report based on the user who opens the report.
You need to add the new field as specified.
What should you do? To answer, select the appropriate options in the answer area.
NOTE: Each correct selection is worth one point.

正解:

Explanation:

Reference:
https://docs.microsoft.com/en-us/dynamics365/fin-ops-core/dev-itpro/analytics/customize-app-suite-reports- with-extensions
https://community.dynamics.com/ax/b/dynamics101trainingcenterax/posts/developing-a-ssrs-report-using-the- report-data-provider-in-microsoft-dynamics-ax-2012
A company uses Dynamics 365 Finance.
There are performance issues with the sales order list page and Invoicing process.
You need to diagnose the issues by using the Performance timer.
Which two processes can the Performance timer monitor? Each correct answer presents a complete solution NOTE: Each correct selection is worth one point.
There are performance issues with the sales order list page and Invoicing process.
You need to diagnose the issues by using the Performance timer.
Which two processes can the Performance timer monitor? Each correct answer presents a complete solution NOTE: Each correct selection is worth one point.
正解:A,B
解答を投票する
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?
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?
正解:B
解答を投票する
A company uses Dynamics 365 Finance. You are customizing elements for the extended data types (EDTs) shown in the following table.

You have a Table named WorkCalendar. The table has a column named BasicCalendarlD that uses the BasicCalendariD EDT. You need to increase the length of the column by using an extension.
Solution: Create a derived EDT for BasicCalendarlD.
Does the solution meet the goal?

You have a Table named WorkCalendar. The table has a column named BasicCalendarlD that uses the BasicCalendariD EDT. You need to increase the length of the column by using an extension.
Solution: Create a derived EDT for BasicCalendarlD.
Does the solution meet the goal?
正解:A
解答を投票する
You need to implement the integration for the Vendor Exclusion List form.
What should you do? To answer, select the appropriate options in the answer area.
NOTE: Each correct selection is worth one point.

What should you do? To answer, select the appropriate options in the answer area.
NOTE: Each correct selection is worth one point.

正解:

Explanation:

Box 1: Table extension
Isolate all new vendor exclusion codes as a new assembly by creating a table named VendExclusions.
Implement the Excel integration for the Vendor Exclusion List form.
The table extension object allows you to add additional fields or to change some properties on a table provided by the Dynamics 365 Business Central service. In this way, you can add data to the same table and treat it as a single table.
Box 2: Unique key
Create an index for the table named PrimaryIdx that uses the following fields: CustAccount, ItemId, VendAccount.
Box 3: Build and synchronize the database.
A project property lets you specify that the synchronize operation for the database should be performed every time that you build the project. This can be useful when you're making changes to the table structure for an application. Each time that you build, you will know that the database is synchronized with the tables as they are defined in the project.
Reference:
https://docs.microsoft.com/en-us/dynamics365/business-central/dev-itpro/developer/devenv-table-ext-object
https://docs.microsoft.com/en-us/dynamics365/fin-ops-core/dev-itpro/dev-tools/build- operations#synchronizing-the-database-at-each-build
You are a Dynamics 365 Finance and Operations developer. You have the following code: (Line numbers are created for reference only.)

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


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

正解:

Explanation:

Box 1: SID1234
Parameters
All methods have their own scope. A method can take one or more parameters. Within the scope of the method, these parameters are treated as local variables and are initialized with a value from the parameter in the method call. All parameters are passed by value, which means that you can't change the value of the original variable. You can change only the local variable in the method. This local variable is a copy of the original variable.
Box 2: 5
Reference:
https://docs.microsoft.com/en-us/dynamics365/fin-ops-core/dev-itpro/dev-ref/xpp-classes-methods
A company is implementing Dynamics 365 finance and operations apps.
The company must integrate its native Dynamics 365 finance and operations apps custom enhancements with Azure.
You need to create the custom business events within a development environment.
Which two classes should you use to extend the custom business events? Each correct answer presents part of the solution.
NOTE: Each correct selection is worth one point.
The company must integrate its native Dynamics 365 finance and operations apps custom enhancements with Azure.
You need to create the custom business events within a development environment.
Which two classes should you use to extend the custom business events? Each correct answer presents part of the solution.
NOTE: Each correct selection is worth one point.
正解:B,D
解答を投票する
A company uses Dynamics 365 Finance.
You have an entity named Vend Vend orV2 Entity. You add a new column to the entity. You need to ensure that the new column is available in the entity for data transfer activity. Which two actions should you perform? Each correct answer presents part of the solution. NOTE; Each correct selection is worth one point.
You have an entity named Vend Vend orV2 Entity. You add a new column to the entity. You need to ensure that the new column is available in the entity for data transfer activity. Which two actions should you perform? Each correct answer presents part of the solution. NOTE; Each correct selection is worth one point.
正解:A,B
解答を投票する
You are designing a new layout for the Vendor Payment Advice report. You add fields to the table that the report uses.
The design must include the new fields.
You need to ensure the standard Payment Advice report always uses the new design.
Which class should you use? To answer, select the appropriate options in the answer area.
NOTE: Each correct selection is worth one point.

The design must include the new fields.
You need to ensure the standard Payment Advice report always uses the new design.
Which class should you use? To answer, select the appropriate options in the answer area.
NOTE: Each correct selection is worth one point.

正解:

Explanation:
ReportDataProviderBase
ReportRunController
A company uses Dynamics 365 Finance. The company is implementing an independent software vendor (ISV) solution.
You overlay the ISV code to add functionality to the solution.
You need to configure code compare options.
Which code compare option should you use? To answer, drag the appropriate code compare options to the correct scenarios. Each code compare option may be used once, more than once, or not at all. You may need to drag the split bar between panes or scroll to view content.
NOTE: Each correct selection is worth one point.

You overlay the ISV code to add functionality to the solution.
You need to configure code compare options.
Which code compare option should you use? To answer, drag the appropriate code compare options to the correct scenarios. Each code compare option may be used once, more than once, or not at all. You may need to drag the split bar between panes or scroll to view content.
NOTE: Each correct selection is worth one point.

正解:

Explanation:
