Microsoft PL-400 - Microsoft Power Platform Developer Certification Exam
Question #1 (Topic: demo questions)
You need to add the script for the registration form event handling. Which code segment should you use?
Correct Answer: B
Explanation:
Scenario: Information about upcoming tournaments must be pre-located into the registration form when the registration form loads. addOnLoad adds event handlers to the Subgrid OnLoad event event.
Question #2 (Topic: demo questions)
You need to determine the primary cause of the issue reported by interns when they use the app. What is the primary cause?
Correct Answer: D
Explanation:
Scenario: Interns can create apps but cannot interact with their own data. Environment Maker role: Can create new resources associated with an environment, including apps, connections, custom APIs, gateways, and flows using Microsoft Power Automate. However, this role doesn't have any privileges to access data within an environment. System Customizer role: full permission to customize the environment. However, users with this role can only view records for environment entities that they create.
Question #3 (Topic: demo questions)
You need to handle errors in UpdateRecord.js. Which code segment should you add at line UR06?
Correct Answer: A
Explanation:
catch(error) {
alert("Caught error: " + error.message);}Why A is correct
UpdateRecord.jsis a JavaScript file.
- JavaScript uses the syntax
- JavaScript uses the syntax
catch(error)to handle exceptions in atry...catchblock.
error.messageretrieves the error description.Why the others are incorrect
alert()displays the error to the user.
- B ❌ Uses C#/ASP.NET syntax (
Server.GetLastError()), not JavaScript.
- C ❌ Uses incorrect Java/C#-style exception syntax and
console.writelineis not a valid JavaScript method.✅ Answer: A.
- D ❌
function(error){ console.log(error.message) }is a callback function, not acatchblock for exception handling.catch(error) {alert("Caught error: " + error.message)
Question #4 (Topic: demo questions)
DRAG DROP
You need to address the user interface issues. What should you do? To answer, drag the appropriate actions to the correct issues. Each action 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.
NOTE: Each correct selection is worth one point.
Correct Answer: A
Explanation:
Box 1: Add &ribbondebug=true to the end of the application URL. Scenario: The captions for the New and Save buttons do not render properly on the form. You can use the an in-app tool called the Command Checker to inspect the ribbon component definitions to help us determine why the button is not rendered correctly. To enable the Command Checker, you must append a parameter &ribbondebug=true to your D365 application URL. For example: https://yourorgname.crm.dynamics.com/main.aspx?appid=9ab590fc- d25e-ea11-a81d-000d3ac2b3e6&ribbondebug=true Box 2: Use the Ribbon Workbench Adding Buttons to Ribbons Download and install Ribbon Workbench. Select a suitable ICON for your button Create a solution. Edit the button in Ribbon Workbench. Publish and test.
| Requirement | Mapped Action | Unused Options |
| Resolve rendering issue for New and Save buttons. | Add &ribbondebug=true to the end of the application URL. | * Export the XML file. * Modify the RibbonWSS.xsd file. |
| Add email button for registration form. | Use Ribbon Workbench. | * Export the XML file. * Modify the RibbonWSS.xsd file. |
Question #5 (Topic: demo questions)
DRAG DROP
You need to select connectors for the app. Which types of connectors should you use? To answer, drag the appropriate connectors to the correct requirements. Each connector 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.
NOTE: Each correct selection is worth one point.
Correct Answer: A
Explanation:
Box 1: Create a custom connector A custom connector is a wrapper around a REST API (Logic Apps also supports SOAP APIs) that allows Logic Apps, Power Automate, or Power Apps to communicate with that REST or SOAP API. Box 2: Use an AppSource connector You can only retrieve the Customer, UnifiedActivity, and Segments entities through the Power Apps connector. Other entities are shown because the underlying connector supports them through triggers in Power Automate. Scenario: Customer information is stored in the Accounts entity. Box 3: Use a native application function You must produce a report that details the number of registrations for a day and send the report as a PDF to the management team.
(Mapped Connectors & Options)
| Requirement | Mapped Connector | Unused Options |
| View full registration records. | Create a custom connector. | * Create a connector with a Postman collection. |
| View customer names. | Use an AppSource connector. | * Create a connector with a Postman collection. |
| View daily registrations. | Use a native application function. | * Create a connector with a Postman collection. |