You are creating a new form in Visual Studio.
You need to apply the Simple List pattern and apply the pattern to a form.
What are the two possible ways to achieve the goal? Each correct answer presents a complete solution.
NOTE: Each correct selection is worth one point.
Answer : B, C
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 company requires a Power Apps app that will enable users to view and create new leads in Dynamics 365 from the app. The data is in a custom entity named LeadsTable, which is not accessible outside Dynamics 365. You need to make the data available outside Dynamics 365. What should you do?
Answer : A
A company uses Dynamics 365 finance and operations apps.
The company must implement efficient business events to allow an external system to subscribe to events coming from Dynamics 365 finance and operations apps.
You need to ensure the business events are efficient.
Which two methods should you use for the configuration? Each correct answer presents a complete solution
NOTE: Each correct selection is worth one point
Answer : A, D
Vou are a Dynamics 365 finance developer.
You create an integer variable named inventQuantity.
You need to display the value from inventQuantlty in an info statement
Which code segment should you use?
Answer : C
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 a range comparison for your new values.
Does the solution meet the goal?
Answer : B
You are a Dynamics 365 Finance developer. You create an integer variable named totalSales.
Which three code segments can you use? Each correct answer presents a complete solution.
NOTE: Each correct selection is worth one point.
Answer : A, C, D
A: int2Str converts an integer to the equivalent string.
C: any2Str converts an anytype value to a str value. The anytype data type is a placeholder for any data type.
D: Example:
void MyMethod()
{
for (int i = 0; i < 10; i++)
{
info(strfmt('i is %1', i));
}
}
https://docs.microsoft.com/en-us/dynamics365/fin-ops-core/dev-itpro/dev-ref/xpp-variables-data-types