DRAG DROP
-
You create a Power Apps app to display customer feedback.
You need to submit and display customer feedback for each sales order.
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.
Show Answer
Correct Answer: Navigate to the Sales order form.
Personalize the page.
Configure and embed the app.
Refresh the browser.
Explanation: To display and submit feedback per sales order, you first open the correct form, then enable page personalization. After that, you configure and embed the Power Apps app into the form, and finally refresh the browser so the embedded app becomes visible.
Question 22
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.
A company is implementing Dynamics 365 finance and operations apps.
The company must test the functionality of its native Dynamics 365 finance and operations apps by using the Acceptance test library (ATL).
You need to implement ATL classes on test data within a development environment.
Solution: Record business process steps and save as developer documentation by using Task recorder.
Does the solution meet the goal?
A. Yes
B. No
Show Answer
Correct Answer: B
Explanation: Task Recorder is used to document and record business process steps, not to create or implement Acceptance Test Library (ATL) classes. Implementing ATL requires creating ATL entities, queries, and test classes (often via ATL code generation), so this solution does not meet the goal.
Question 23
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.
A company is implementing Dynamics 365 finance and operations apps.
The company must test the functionality of its native Dynamics 365 finance and operations apps by using the Acceptance test library (ATL).
You need to implement ATL classes on test data within a development environment.
Solution: Use the ATL Code generation wizard to create the required queries, specifications, and entities.
Does the solution meet the goal?
A. Yes
B. No
Show Answer
Correct Answer: A
Explanation: The Acceptance Test Library (ATL) Code Generation wizard is specifically designed to generate ATL queries, specifications, and entities based on test data in a development environment. Using this wizard directly supports implementing ATL classes needed to test native Dynamics 365 finance and operations apps, so the solution meets the stated goal.
Question 24
A company is implementing Dynamics 365 finance and operations apps.
The company must test the custom enhancements for its native Dynamics 365 finance and operations apps.
You need to create a test case within a development environment.
Which base class should the test class extend?
A. SysTestSuite
B. SysTest
C. SysTestCase
D. SysTestExecute
Show Answer
Correct Answer: C
Explanation: In Dynamics 365 Finance and Operations, unit and integration test classes must extend SysTestCase. SysTestCase is the base class that provides the testing framework, assertions, and execution support for writing test cases. SysTestSuite is used to group tests, SysTest is an attribute/helper class, and SysTestExecute is used by the test runner, not as a base class.
Question 25
DRAG DROP
-
A company uses Dynamics 365 Finance.
You create two methods in a class:
• MethodA is called only from the class. MethodA is not called from other locations in the code. Within MethodA, you must access class variables.
• MethodB is called from other places in the app. MethodB does not need to instantiate the class or access the class variables.
You need to implement the methods.
Which method types should you use? To answer, drag the appropriate method types to the correct methods. Each method type 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.
Show Answer
Correct Answer: MethodA: Private instance
MethodB: Public static
Explanation: MethodA is used only within the class and must access instance (class) variables, so it should be a private instance method. MethodB is called from other parts of the application and does not require class instantiation or access to instance variables, so it should be a public static method.
Question 26
You need to set up the recurring data integration to pull data from the SFTP site into Dynamics 365 Finance.
Which API architecture type should you use?
A. SOAP
B. JSON
C. RPC
D. REST
Show Answer
Correct Answer: D
Explanation: For recurring data integration into Dynamics 365 Finance, Microsoft’s standard integration architecture is REST-based (OData and data management frameworks). REST is lightweight, widely supported, and aligns with file-based/SFTP ingestion workflows. SOAP is legacy and heavier, JSON is a data format rather than an API architecture, and RPC is not suited for loosely coupled enterprise integrations.
Question 27
You need to select an integration strategy to meet the new freight processing requirement.
Which two integration strategies can you use? Each correct answer presents a complete solution.
NOTE: Each correct selection is worth one point.
A. batch data API
B. OData
C. custom web service
D. asynchronous integration
Show Answer
Correct Answer: B, C
Explanation: The requirement describes two integration needs: XML files exchanged via SFTP and an additional real-time integration using OData. OData is the standard strategy for real-time, synchronous data exchange, while a custom web service is appropriate for handling XML-based integrations over SFTP when standard APIs do not meet the requirement. Batch data API and generic asynchronous integration do not fully satisfy the stated real-time and SFTP/XML needs as complete solutions.
Question 28
DRAG DROP -
A company uses Dynamics 365 Finance.
A user is unable to access the new Customer Credit Limit report.
You need to configure security for the report.
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.
Select and Place:
Show Answer
Correct Answer: Create a new privilege and duty extension
Add the new privilege to a duty extension and output the menu item to the privilege
Add the duty extension to a role
Explanation: Access to a new report in Dynamics 365 Finance is granted through security artifacts. First, create a privilege and duty extension. Next, associate the report’s output menu item with the privilege and add that privilege to the duty extension. Finally, assign the duty extension to the appropriate role so users inherit access.
Question 29
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. 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 BasicCalendarID that uses the BasicCalendarID EDT.
You need to increase the length of the column by using an extension.
Solution: Create a derived EDT for BasicCalendarID.
Does the solution meet the goal?
A. Yes
B. No
Show Answer
Correct Answer: B
Explanation: In Dynamics 365 Finance, you cannot increase the length of an existing table column by creating a derived EDT. A derived EDT creates a new type and does not affect the original EDT or columns already based on it. To change a column’s length, you would need to extend the EDT itself (if allowed) or extend the table field. Therefore, the proposed solution does not meet the goal.
Question 30
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. 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 BasicCalendarID that uses the BasicCalendarID EDT.
You need to increase the length of the column by using an extension.
Solution: Create a derived EDT for CalendarName.
Does the solution meet the goal?
A. Yes
B. No
Show Answer
Correct Answer: B
Explanation: The column uses the BasicCalendarID EDT. Creating a derived EDT for CalendarName does not affect the length of BasicCalendarID. To increase the column length via an extension, you would need to extend the existing EDT or change the table field to use a different EDT; therefore the proposed solution does not meet the goal.
$19
Get all 280 questions with detailed answers and explanations
Instant download HTML + PDF delivered the moment payment clears.
Secure Stripe checkout we never see or store your card details.
7-day refund if files are defective see our refund policy.