DRAG DROP -
A company is developing a Microsoft Dataverse plug-in.
The plug-in must create a follow-up task for a new account.
You add the code that receives context(IPluginExecutionContext) and service(IOrganizationService).
You need to create the remaining code to insert the follow-up task.
Which three code blocks should you use in sequence? To answer, move the appropriate code sequences from the list of sequences to the answer area and arrange in the correct order.
Show Answer
Correct Answer: 1. Entity account = (Entity)context.InputParameters["Target"];
2. Entity followuptask = new Entity("task"); followuptask["subject"] = "Send e-mail to the new customer"; followuptask["regardingobjectid"] = account.ToEntityReference();
3. service.Create(followuptask);
Explanation: On a Create message, the new account is available in InputParameters["Target"]. The task's regardingobjectid requires an EntityReference, so use account.ToEntityReference(), then create the task with service.Create().
Question 142
A company designs a solution for use in an international organization.
The solution must provide multiple UI languages and currencies.
You need to move components to include them as part of the solution.
Which three component types can you move? Each correct answer presents part of the solution.
NOTE: Each correct selection is worth one point.
A. available UI languages
B. scheduled power automate flow
C. custom entity
D. modified standard security role
E. Currencies enabled in the environment
Show Answer
Correct Answer: A, C, E
Explanation: Custom entities are solution components and can be moved in solutions. Multi-language support is included through solution translation support for UI labels (with target environments needing the languages provisioned), and currencies are configuration data that can be included for solutions supporting multiple currencies. Scheduled Power Automate flows and modified security roles are movable solution components in general, but they are not the components relevant to meeting the stated multilingual and multicurrency solution requirements.
Sources:
https://learn.microsoft.com/en-us/power-platform/alm/create-solutions-support-multiple-languages
https://learn.microsoft.com/en-us/power-automate/overview-solution-flows
Question 143
A company develops a new Microsoft Dataverse plug-in that manages the Update message of an entity.
The plug-in logic requires access to the record columns before the operation starts and must compare the columns to post-update values.
You need to modify the design of the solution to access the information.
What should you do?
A. Add the code to the plug-in to read the record from the InputParameters collection.
B. Register a pre-image by using the Plug-in Registration Tool. Add the code to the plug-in to read the image from the PreEntityImages collection.
C. Register a post-image by using the Plug-in Registration Tool. Add the code to the plug-in to read the image from the PostEntityImages collection.
D. Add the code to the plug-in to query the data from Dataverse by using the API call based on the record I
Show Answer
Correct Answer: B
Explanation: Register a pre-entity image for the Update plug-in step and read it from the PreEntityImages collection. A pre-image provides a snapshot of the record before the update, which is the recommended way to access original values for comparison. The updated values are available from the Target entity (or a post-image if specifically registered), so using a pre-image avoids an extra Dataverse retrieve and is the standard design for comparing before and after values.
Question 144
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 once 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 designs data integration with an external system by using virtual tables.
You need to implement the virtual tables.
Solution: Use a table that has a GUID as its primary key.
Does the solution meet the goal?
A. Yes
B. No
Show Answer
Correct Answer: A
Explanation: Yes. Using a table with a GUID as its primary key satisfies the requirements for implementing virtual tables. Although some providers (such as SQL virtual tables) can also support integer primary keys, a GUID primary key is a valid implementation and therefore meets the stated goal.
Question 145
Case study -
This is a case study. Case studies are not timed separately. You can use as much exam time as you would like to complete each case. However, there may be additional case studies and sections on this exam. You must manage your time to ensure that you are able to complete all questions included on this exam in the time provided.
To answer the questions included in a case study, you will need to reference information that is provided in the case study. Case studies might contain exhibits and other resources that provide more information about the scenario that is described in the case study. Each question is independent of the other questions in this case study.
At the end of this case study, a review screen will appear. This screen allows you to review your answers and to make changes before you move to the next section of the exam. After you begin a new section, you cannot return to this section.
To start the case study -
To display the first question in this case study, click the Next button. Use the buttons in the left pane to explore the content of the case study before you answer the questions. Clicking these buttons displays information such as business requirements, existing environment, and problem statements. If the case study has an All Information tab, note that the information displayed is identical to the information displayed on the subsequent tabs. When you are ready to answer a question, click the Question button to return to the question.
Background -
Northwind Traders uses Microsoft Dynamics 365 Sales to manage its sales process. To better understand its customers, Northwind Traders invests in a team of researchers who gather data from multiple sources. The company stores the data it collects in a Microsoft Azure SQL Database. The company plans to use the data to enrich account records and make the sales team more effective.
Current environment -
Environment -
• The company has three Microsoft Power Platform environments with Dynamics 365 Sales installed. The environments are named development, test, and production.
• Each environment has an application user that can be used for integrations.
• The company must use solutions to perform all customization and configuration deployment.
Data -
• Researchers are responsible for creating account records.
• Researchers have permissions on the Account table to create records, read all records, and update records they own.
• A synchronous plug-in runs when an account record is created and could reassign the record to a different user.
• Users must access data as themselves to enforce security and audit changes.
• A column named new_dataid is added to the Account table. The column uniquely identifies which data it should receive.
• Researchers have researched only the top 20 percent of account records.
Web API -
• The company creates an Azure Function to run a RESTful .NET Web API.
• Data can be retrieved by placing a GET request to the URL https://dataservice-[ENVIRONMENTNAME].azurewebsites.net/enrich/[DATAID].
• [ENVIRONMENTNAME] is the name of the Microsoft Power Platform environment that requests the data.
• [DATAID] is the new_dataid column in the Account table.
• The Web API response will return a 200 response plus data if the DataId is found. Otherwise, a 404 response is returned.
• Developers plan to create a custom connector from the Web API to make it accessible from Microsoft Power Platform.
Requirements -
Custom connector -
• The Web API definition used to create the custom connector must be generated based on a low-code technology.
• The URL used by the custom connector must incorporate the current environment name without hardcoding values.
• Errors generated by the custom connector must not cause downstream processes to fail.
• Text descriptions and field placeholder text that describe the use of the custom connector must appear for non-developers.
Process -
• All account records must be updated with data from the Web API once automatically.
• Only account records that contain a DataId should be updated by the Web API.
• Researchers must create Power Automate flows to specify data analysis priority.
• The researchers require a process that repurposes a set of identical steps of parameterized Microsoft Dataverse queries from a Power Automate flow for use in other flows that have different parameters. The researchers want to avoid recreating the steps manually each time they create a flow to save time and avoid errors.
Issues -
• A tester attempts to connect to the production instance of the Web API with a DataId that should return data. The tester receives an error stating that the remote name could not be resolved.
• A missing component causes an error to occur when importing the solution that contains the Power Automate flow to update account records in a test environment.
You need to choose a technology to access the Web API.
Which technology should you select?
A. Canvas app that uses the custom connector
B. Plug-in that contacts the Web API
C. Power Automate flow that uses the custom connector
D. Webhook that contacts the Web API
Show Answer
Correct Answer: C
Explanation: The requirements explicitly state that the Web API should be exposed through a custom connector generated using a low-code technology. Researchers also need to orchestrate the enrichment process with Power Automate, and the connector must handle errors without causing downstream failures, which is supported through Power Automate using the custom connector. A canvas app is for user interaction rather than automated processing, a plug-in would bypass the stated low-code custom connector requirement, and a webhook is not the appropriate technology for consuming this REST API in the described process.
Question 147
HOTSPOT -
Contoso, Ltd. has a database that stores proprietary stock market information that the company has accumulated over many years.
You create a RESTful service for the company that exposes specific information about stocks. You must make the service available to the company's brokers. The service must be certified by Microsoft.
You need to create a custom connector for the service APIs.
How should you configure the connector? To answer, select the appropriate options in the answer area.
NOTE: Each correct selection is worth one point.
Hot Area:
Show Answer
Correct Answer: Who owns the connector?: Contoso, Ltd.
Where is the stackOwner property defined?: apiProperties.json
Explanation: For a Microsoft-certified custom connector published on behalf of a company, the connector owner is the company (Contoso, Ltd.). The stackOwner property used during certification is defined in apiProperties.json.
Question 148
You need to reduce the number of Azure consumption API calls for User2.
Which markup segment should you use?
A.
B.
C.
D.
Show Answer
Correct Answer: C
Explanation: To reduce API consumption for a specific user/key, use a rate-limit-by-key policy with a very low call limit. Option C limits the key to 1 successful call per 60-second renewal period, which most aggressively reduces consumption for that user.
Question 149
You are troubleshooting a new canvas app.
Users report the app loads slowly. You use the Monitor tool to view various events being performed in the app. Events performed in the app do not have formula details.
You need to enable formulas to be included with the Monitor tool events.
What should you do?
A. Add the Microsoft Azure Application Insights data source to the canvas app
B. After each event, implement the trace function within the canvas app
C. Turn on the Debug published app setting in the canvas app
D. Validate the Application Insights instrumentation key has been populated in the app object's properties within the canvas app
Show Answer
Correct Answer: C
Explanation: To include formula/source expression details in Monitor for a published canvas app, enable the 'Debug published app' setting. This publishes source expressions with the app so Monitor can map events to formulas. Application Insights and instrumentation keys are for telemetry, and the Trace function adds custom diagnostic records but does not enable formula details for existing Monitor events.
Sources:
https://learn.microsoft.com/en-us/power-apps/maker/monitor-canvasapps
Question 150
HOTSPOT
-
You are creating a new model-driven app.
The app must meet the following requirements:
• Display an image that can be resized without loss in quality.
• Use a client API function to return language-localized text.
You need to customize the app by using web resources.
Which web resource types should you use?
To answer, select the appropriate options in the answer area.
NOTE: Each correct selection is worth one point.
Explanation: SVG is a scalable vector format that can be resized without loss of quality. RESX web resources store localized strings and are used by the client API to return language-specific text.
Question 151
A company uses Microsoft Dataverse rollup fields to calculate insurance exposure and risk profiles for customers.
Users report that the system does not update values for the rollup fields when new insurance policies are written.
You need to recalculate the value of the rollup fields immediately after a policy is created.
What should you do?
A. Create new fields on the customer entity for insurance exposure and risk. Write a workflow process that is triggered when a new policy record is created to calculate the sum of values from policy records.
B. Create new calculated fields on the customer entity for insurance exposure and risk. Configure the formula to calculate the sum of values from policy records.
C. Change the frequency of the Calculate Rollup Field recurring job from every hour to every five minutes.
D. Create new fields on the customer entity for insurance exposure and risk. Write a plug-in that is triggered whenever a new policy is created.
Show Answer
Correct Answer: D
Explanation: Dataverse rollup fields are updated by asynchronous rollup jobs and are not recalculated immediately when related records are created. Changing the recurring job frequency only reduces the delay and still does not guarantee an immediate update. Calculated fields cannot aggregate related child records in the same way as rollup fields. To recalculate immediately after a policy is created, use synchronous custom logic triggered on policy creation, such as a plug-in, to compute and update the customer values. Among the provided options, the plug-in approach best satisfies the requirement for immediate recalculation.
$19
Get all 409 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.