Microsoft Power Platform Developer — Question 55
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 on the review screen.
You have two tables, account and contact, with a parent-child relationship. Records in the account table can be created in the UI or from an external system integrated with Dataverse by using an Azure Function.
When a user creates a record in the account table, a default record in the contact table must be created automatically.
You need to implement a process to create the contact records.
Solution: Create a plug-in that runs when the account record is created. Use the Organization service to create the contact record.
Does the solution meet the goal?
Answer options
- A. Yes
- B. No
Correct answer: B
Explanation
The proposed solution does not meet the goal because using a plug-in to create the contact record would not ensure the record is created automatically in the context of an Azure Function integration. This process requires a different approach, such as utilizing workflows or Power Automate, to properly handle the automatic creation of contact records when an account is created.