MB-500試験無料問題集「Microsoft Dynamics 365: Finance and Operations Apps Developer 認定」
You are a Dynamics 365 Finance developer.
You have a table named FMVehicle that contains a field named Vehicleld. The table has a clustered index named Vehicleldldx on the Vehicleld 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 Vehicleld field in the vehicle variable.
Which embedded-SQL statement should you use?
You have a table named FMVehicle that contains a field named Vehicleld. The table has a clustered index named Vehicleldldx on the Vehicleld 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 Vehicleld field in the vehicle variable.
Which embedded-SQL statement should you use?
正解:C
解答を投票する
A company is implementing Dynamics 365 finance and operations apps.
The company must functionally test its native Dynamics 365 finance and operations apps with specific data values.
You need to add specific values on test data within a development environment.
Which two fluent setter methods can you use to achieve the goal? Each correct answer presents a complete solution.
NOTE: Each correct selection is worth one point.
The company must functionally test its native Dynamics 365 finance and operations apps with specific data values.
You need to add specific values on test data within a development environment.
Which two fluent setter methods can you use to achieve the goal? Each correct answer presents a complete solution.
NOTE: Each correct selection is worth one point.
正解:B,D
解答を投票する
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
An organization uses Visual Studio to develop customizations for Dynamics 365 Supply chain Management.
You need to create an extension for the CustTable form and add the extension to the Visual Studio project.
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.
You need to create an extension for the CustTable form and add the extension to the Visual Studio project.
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:
1. In AOT, right-click CustTable form
2. Select Create Extension
3. Rename the new CustTable extension
Reference:
https://docs.microsoft.com/en-us/dynamics365/business-central/dev-itpro/developer/devenv-extension- example
A company has a Dynamics 365 finance and operations app.
The company has the following requirements for data entities.
* Must asynchronously import XML files that contain sales order header and line information
* Must use an OData endpoint to enable two measures and two attributes from the CustTransView view in a PowerB1 report You need to identify the data entity type to implement.
Which data entity type should you use? To answer, move the appropriate data entities to the correct requirements You may use each data entity once, more than once, or not at all. You may need to move the split bar between panes or scroll to view content.
NOTE: Each correct selection is worth one point.
The company has the following requirements for data entities.
* Must asynchronously import XML files that contain sales order header and line information
* Must use an OData endpoint to enable two measures and two attributes from the CustTransView view in a PowerB1 report You need to identify the data entity type to implement.
Which data entity type should you use? To answer, move the appropriate data entities to the correct requirements You may use each data entity once, more than once, or not at all. You may need to move the split bar between panes or scroll to view content.
NOTE: Each correct selection is worth one point.
正解:
Explanation:
You have a Dynamics 365 Finance and Operations development environment.
You must add default filters to the fleet management form. You must view only sales that occur in the current sales period and where the Customer name field contains the next Wholesales.
You need to configure filtering.
What should you do? To answer, select the appropriate options in the answer area.
NOTE: Each correct selection is worth one point.
You must add default filters to the fleet management form. You must view only sales that occur in the current sales period and where the Customer name field contains the next Wholesales.
You need to configure filtering.
What should you do? To answer, select the appropriate options in the answer area.
NOTE: Each correct selection is worth one point.
正解:
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. 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 and operations apps.
You have a custom enumeration named CarType. The enumeration has the following elements: Sedan, SUV.
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 true for the CarType enumeration. Create an extension for the CarType base enumeration to add the MUV element.
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.
A company uses Dynamics 365 finance and operations apps.
You have a custom enumeration named CarType. The enumeration has the following elements: Sedan, SUV.
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 true for the CarType enumeration. Create an extension for the CarType base enumeration to add the MUV element.
Does the solution meet the goal?
正解:A
解答を投票する
You are working on a project that uses out-of-the-box OData endpoints and custom web services.
HTTP calls must be used to retrieve data and perform operations with minimal development effort.
All integration calls must be automated so that no user interaction is required once they are configured.
The following operations must be created:
* Obtain a list of customers from a customer group.
* Post a sales order invoice.
* Obtain a vendor balance.
You need to design the integrations.
Which integration endpoint should you use for each requirement? To answer, move the appropriate integration endpoints to the correct requirements. You may use each integration endpoint once, more than once, or not at all You may need to move the split bar between panes or scroll to view content NOTE: Each correct selection is worth one point.
HTTP calls must be used to retrieve data and perform operations with minimal development effort.
All integration calls must be automated so that no user interaction is required once they are configured.
The following operations must be created:
* Obtain a list of customers from a customer group.
* Post a sales order invoice.
* Obtain a vendor balance.
You need to design the integrations.
Which integration endpoint should you use for each requirement? To answer, move the appropriate integration endpoints to the correct requirements. You may use each integration endpoint once, more than once, or not at all You may need to move the split bar between panes or scroll to view content NOTE: Each correct selection is worth one point.
正解:
Explanation:
A company uses Dynamics 365 Finance.
You need to migrate all custom report artifacts from a development environment to a cloud-hosted Tier-1 test environment that has Visual Studio installed.
Which two actions should you perform? Each correct answer presents part of the solution.
NOTE: Each correct selection is worth one point.
You need to migrate all custom report artifacts from a development environment to a cloud-hosted Tier-1 test environment that has Visual Studio installed.
Which two actions should you perform? Each correct answer presents part of the solution.
NOTE: Each correct selection is worth one point.
正解:A,B
解答を投票する
解説: (GoShiken メンバーにのみ表示されます)
You are a Dynamics 365 Finance developer.
A long-running process times out in the system.
You need to implement the asynchronous framework to resolve this issue.
Which class runAsync method should you use for each use case? To answer, drag the appropriate classes to the correct use cases. Each class 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.
A long-running process times out in the system.
You need to implement the asynchronous framework to resolve this issue.
Which class runAsync method should you use for each use case? To answer, drag the appropriate classes to the correct use cases. Each class 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:
A company uses Dynamics 365 Finance.
You create a new extension for a standard table.
You need to add a new method in the extension.
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.
You create a new extension for a standard table.
You need to add a new method in the extension.
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:
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?
You need to ensure that users can view this tile on a form in the user interface.
What should you do?
正解:C
解答を投票する
解説: (GoShiken メンバーにのみ表示されます)
A company uses Dynamics 365 Finance. You have two tables as shown:
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.
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,B
解答を投票する
解説: (GoShiken メンバーにのみ表示されます)
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.
For each of the following statements, select Yes if the statement is true. Otherwise, select No.
NOTE: Each correct selection is worth one point.
正解:
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