MB-500 無料問題集「Microsoft Dynamics 365: Finance and Operations Apps Developer」

A company is developing a new solution in Dynamics 365 Supply Chain Management. Customers will be able to use the solution in their own implementations.
Several of the classes in the solution are designed to be extended by customers in other implementations to accommodate unique requirements.
Certain methods must show up in the output window during the build process to advise other developers about the intent of the methods.
You need to implement the statements for the methods.
What should you implement?

You need to configure security for the Vendor Exclusion List report.
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、B 解答を投票する
解説: (JPNTest メンバーにのみ表示されます)
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: (Une numbers are included for reference only.)

You need 10 ensure that the compiler will report an error if code calls the bike method.
Solution:
Create the following attribute class:

Insert the following code at line 01:

Does the solution meet the goal?

A company uses Dynamics 365 Finance.
The company needs to Hack deletions of purchase order header records only.
You need to enable the change tracking.
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 in the correct order.
正解:

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

解説: (JPNTest メンバーにのみ表示されます)
A company uses Dynamics 365 Unified Operations.
You need to integrate the system with third-party applications.
Which data integration strategies should you use? To answer, drag the appropriate data integration strategies to the correct scenarios. Each strategy may be used once, more than once, or not at all. You may need to drag the split bar between panes or scroll to view content.
NOTE: Each correct selection is worth one point.
正解:

Explanation:

Box 1: custom service
Custom service peak data volume is 1,000 records per hour.
Box 2: batch data API
This scenario is best implemented by using batch data APIs, which has a peak data volume of 300,000 records per hour.
Box 3: OData endpoint
Peak data volume for reading Odata status of orders is 5,000 records per hour.
This scenario is best implemented by using the OData service endpoints to read order status information.
Reference:
https://docs.microsoft.com/en-us/dynamics365/fin-ops-core/dev-itpro/data-entities/integration-overview
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.
正解:

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

Does the solution meet the goal?

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

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

正解:A、D 解答を投票する
解説: (JPNTest メンバーにのみ表示されます)
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.
正解:

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
You need to resolve the issue for UserB.
Which framework should you use?

A company uses Dynamics 365 Finance.
You must use QueryBuilder classes to implement a query that loops through all customers for whom the customer group equals EXT. You need to implement the query. You declare and initialize a query Object.
You need to run the query.
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.
正解:

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

You create a Visual Studio project named ProductUpdates.
You must update data in a table named ProductTable. You must be able to run the code from Visual Studio.
You need to create an X++ class.
Which five 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:
1. Create a runnable class and add it to the ProductUpdates project
2. Open the new class and add a main method to the class
3. Write the database manipulation code in the class
4. Set the class as startup object
5. Build and run the class

弊社を連絡する

我々は12時間以内ですべてのお問い合わせを答えます。

オンラインサポート時間:( UTC+9 ) 9:00-24:00
月曜日から土曜日まで

サポート:現在連絡