MB-820 無料問題集「Microsoft Dynamics 365 Business Central Developer」
You are creating a new Business Central report.
You plan to use triggers and functions to dynamically create a dataset and control the report behavior.
You must provide the following implementation.
* Run when the report is loaded.
* Run when the data item is iterated for the last time.
* Skip the rest of the report.
You need to select the triggers and functions for the report.
Which triggers and functions should you use? To answer, select the appropriate options in the answer area.
NOTE: Each correct selection is worth one point.
You plan to use triggers and functions to dynamically create a dataset and control the report behavior.
You must provide the following implementation.
* Run when the report is loaded.
* Run when the data item is iterated for the last time.
* Skip the rest of the report.
You need to select the triggers and functions for the report.
Which triggers and functions should you use? To answer, select the appropriate options in the answer area.
NOTE: Each correct selection is worth one point.
正解:
Explanation:
* Run when the report is loaded: OnInitReport
* Run when the data item is iterated for the last time: OnPostDataItem
* Skip the rest of the report: CurrReport.Skip()
Triggers and Functions:
* Run when the report is loaded.The correct trigger for running a function when the report is loaded is OnInitReport.
* OnInitReport is triggered when the report is initialized, which aligns with the requirement to run when the report is loaded.
* Run when the data item is iterated for the last time.The correct trigger here is OnPostDataItem.
* OnPostDataItem runs when the data item has been fully processed and iterated for the last time, which is the specific requirement for this condition.
* Skip the rest of the report.The correct function here is CurrReport.Skip().
* CurrReport.Skip() is used to skip the remaining records and terminate the current iteration, allowing you to skip the rest of the report as required.
A company plans to set up a local Business Central Development Docker container. The environment will be used for testing new project ideas.
You need to ensure that the most recent Business Central artifact URL has been selected. Which command should you use?
You need to ensure that the most recent Business Central artifact URL has been selected. Which command should you use?
正解:C
解答を投票する
解説: (JPNTest メンバーにのみ表示されます)
A company is deploying Business Central on-premises.
The company plans to use a single-tenant deployment architecture.
You need to describe how the data is stored and how the Business Central Server is configured.
In which two ways should you describe the single-tenant architecture? Each correct answer presents a complete solution.
NOTE: Each correct selection is worth one point.
The company plans to use a single-tenant deployment architecture.
You need to describe how the data is stored and how the Business Central Server is configured.
In which two ways should you describe the single-tenant architecture? Each correct answer presents a complete solution.
NOTE: Each correct selection is worth one point.
正解:A、E
解答を投票する
解説: (JPNTest メンバーにのみ表示されます)
A company is examining Connect apps and Add-on apps for use with Business Central.
You need to describe the development language requirements for Connect apps and Add-on apps.
How should you describe the app language requirements? To answer, move the appropriate app types to the correct descriptions. You may use each app type 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.
You need to describe the development language requirements for Connect apps and Add-on apps.
How should you describe the app language requirements? To answer, move the appropriate app types to the correct descriptions. You may use each app type 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:
* Developed by using any coding language: Connect app
* Developed by using AL language in Visual Studio Code: Add-on app
In Microsoft Dynamics 365 Business Central, there are distinct types of applications that can be developed:
Connect apps and Add-on apps. Each has its own development language requirements:
* Connect apps:
* Connect apps are designed to connect Business Central with external services or applications.
They are often developed using a variety of programming languages, not limited to the AL language, and can be hosted outside of the Business Central environment. Therefore, when a description states that the app is developed using any coding language, it generally refers to a Connect app. This type of app integrates with Business Central through APIs and web services.
* Add-on apps:
* Add-on apps are built to extend the functionality of Business Central within the application itself.
These are developed using the AL language, which is the programming language for Business Central, and they are created and managed within the Visual Studio Code environment with the AL Language extension. An Add-on app is typically a Business Central extension that is directly installed into the Business Central environment.
The language and environment used for developing these apps are key differentiators between Connect apps and Add-on apps.
You ate creating a view for a Business Central app.
The view requires a custom layout that displays only customer records with a balance greater than 500 in local currency.
You need to configure the view to specify that it has a custom layout.
Which property combination should you use?
The view requires a custom layout that displays only customer records with a balance greater than 500 in local currency.
You need to configure the view to specify that it has a custom layout.
Which property combination should you use?
正解:D
解答を投票する
解説: (JPNTest メンバーにのみ表示されます)
You need to create the API page according to the requirements.
How should you complete the code segment? To answer, select the appropriate options in the answer area.
NOTE: Each correct selection is worth one point.
How should you complete the code segment? To answer, select the appropriate options in the answer area.
NOTE: Each correct selection is worth one point.
正解:
Explanation: