You develop code that will perform an update to existing records in a table.
The update must occur based on the alternate key configured for the table.
You need to perform the update.
Which two requests should you use? Each correct answer presents a complete solution.
NOTE: Each correct selection is worth one point.
A. UpdateRequest
B. UpsertRequest
C. CreateRequest
D. RetrieveRequest
Show Answer
Correct Answer: A, B
Explanation: To update existing records using an alternate key, the request must support identifying a record by keys other than the primary ID. UpdateRequest allows updating an existing row when addressed by an alternate key. UpsertRequest also supports alternate keys and will update the record if it exists (or create it if it does not), which still satisfies the requirement to perform an update. CreateRequest and RetrieveRequest cannot perform updates.
Question 75
HOTSPOT -
You develop the following code as part of an OnSave event handler in a form.
For each of the following statements, select Yes if the statement is true. Otherwise, select No.
NOTE: Each correct selection is worth one point.
Show Answer
Correct Answer: Yes
No
No
Explanation: The save is always cancelled by preventDefault(). The retrieveRecord call is asynchronous, so isOnHold is still false when it is checked and the confirmation dialog is not shown. Because the save is cancelled and formContext.data.save() is only called inside the confirmation branch, the record will not save even when creditonhold is false.
Question 76
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 requires custom validation when users save form records that use a synchronous plug-in.
If validation fails, a message that explains how to resolve the issue must be displayed on the form to the user.
You need to implement the custom validation.
Solution: Include the message in the output parameters of the plug-in.
Does the solution meet the goal?
A. Yes
B. No
Show Answer
Correct Answer: B
Explanation: Including a message in the plug-in OutputParameters does not display a validation message on the form during a synchronous save. OutputParameters are meant for returning data from post-operation plug-ins and are not shown to users. To display a validation message and block the save, the plug-in must throw an InvalidPluginExecutionException (or similar) in a synchronous pre-operation step so the message is surfaced to the user.
Question 77
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 calculated fields on the customer entity for insurance exposure and risk. Create a formula to calculate the sum of values from policy records.
B. Change the frequency of the Calculate Rollup Field recurring job from every hour to every five minutes.
C. Create a plug-in that uses the update method for the rollup fields. Configure a step on the Create event for the policy entity for this plug-in.
D. Create a plug-in that uses the CalculateRollupFieldRequest method for the rollup field. Configure a step on the Create event for the policy entity for this plug-in.
Show Answer
Correct Answer: D
Explanation: Dataverse rollup fields are calculated asynchronously by a system job and are not updated immediately when related records change. To force an immediate recalculation after a new policy is created, you must explicitly invoke the rollup calculation. The supported way to do this is to create a plug-in that runs on the Create event of the policy entity and calls the CalculateRollupFieldRequest for the specific rollup field. Changing the recurring job frequency does not guarantee immediate updates, calculated fields cannot aggregate child records like rollups, and simply updating the field does not trigger recalculation.
Question 78
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 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 develops a new custom connector for a Microsoft Entra ID-protected Azure Function that was created as a single tenant app.
The custom connector must be moved to a production environment. The connector must be visible and accessible only to users in the tenant.
You need to deploy the custom connector.
Solution: Use Postman to export the custom connector. Then use Postman to import the connector into the production environment.
Does the solution meet the goal?
A. Yes
B. No
Show Answer
Correct Answer: B
Explanation: Using Postman to export and import a custom connector does not properly deploy it into a Power Platform production environment. Postman is an API testing tool and does not preserve Power Platform artifacts, environment configuration, or tenant-scoped security. The correct approach is to package the custom connector in a solution (preferably a managed solution) and import it into the production environment to ensure proper deployment and tenant-only visibility.
Question 79
DRAG DROP
-
You manage a model-driven app.
The forms in the app do not work as expected. You must troubleshoot the form issues.
Code unrelated to an event must continue to run as you troubleshoot.
You need to disable form events to isolate the causes.
Which URL parameters should you use? To answer, move the appropriate URL parameters to the correct events. You may use each URL parameter 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.
Show Answer
Correct Answer: Form OnLoad: DisableFormHandlers
Column OnChange: DisableFormHandlers
Explanation: The DisableFormHandlers URL parameter disables all form event handlers, including OnLoad and Column OnChange, while allowing unrelated code to continue running. Other parameters target libraries or controls rather than events.
Question 80
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 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 develops a new custom connector for a Microsoft Entra ID-protected Azure Function that was created as a single tenant app.
The custom connector must be moved to a production environment. The connector must be visible and accessible only to users in the tenant.
You need to deploy the custom connector.
Solution: Add the custom connector to a managed solution, export the managed solution, and then import the managed solution into the production environment.
Does the solution meet the goal?
A. Yes
B. No
Show Answer
Correct Answer: B
Explanation: The solution does not meet the goal because components (including custom connectors) cannot be added directly to a managed solution. You must first add the custom connector to an unmanaged solution, then export it as a managed solution and import it into production. Therefore, the described process is invalid.
Question 81
DRAG DROP
-
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 configure a Power Automate flow to update account records by using the response from the Web API.
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.
Show Answer
Correct Answer: Add an initialize variable step and set the value to the response code from the custom connector.
Add a condition step to check if the variable value equals 404.
Add a terminate step and set the status to failed.
Explanation: The flow must handle Web API errors without causing unintended updates. Initializing a variable captures the HTTP response code. Checking for a 404 explicitly handles the case where no data exists for the DataId. Terminating the flow on a 404 prevents record updates and clearly stops processing when enrichment data is not found.
Question 82
A company performs an update to an existing column-bound Power Apps Component Framework (PCF) code component.
You test the changes to the code component in the development environment. You then import the component to the production environment as a part of a managed solution. You observe that the changes to the component are not reflected in the production environment.
You need to ensure that the changes are effective in the production environment.
What should you do?
A. Import the PCF code component to the production environment directly from Visual Studio Code by using the pac pcf push instruction.
B. Publish the form that uses the PCF code component in the production environment.
C. Increment the PCF control version property in the manifest.xml file, and then reimport the solution from development to the production environment.
D. Publish the PCF code component in the production environment.
Show Answer
Correct Answer: C
Explanation: For PCF controls deployed via managed solutions, changes are only applied when the control version changes. If you update the code but keep the same version in manifest.xml, Dataverse continues using the previously deployed version in production. Incrementing the PCF control version and reimporting the managed solution ensures the platform recognizes and deploys the updated component. Publishing forms or the component alone will not force an update, and pushing directly from VS Code is not appropriate for managed production environments.
Question 83
DRAG DROP
-
You manage a Microsoft Power Automate cloud flow that uses a List rows action to query data from the Accounts table. The Accounts table contains more than 15,000 rows.
You must develop automation that meets the following requirements:
• Manage a large number of records.
• Return information from related contact records.
You need to configure the cloud flow to return the information.
Which properties should you configure? To answer, move the appropriate properties to the correct requirements. You may use each property 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.
Show Answer
Correct Answer: Manage a large number of records:
Skip token
Return information from related contact records:
Expand query
Explanation: Skip token enables server-side pagination to handle large datasets beyond default limits. Expand query retrieves data from related tables (such as Contacts) in a single List rows action.
$19
Get all 406 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.