PL-900 Describe the business value of Microsoft Power Platform • Set 5
PL-900 Describe the business value of Microsoft Power Platform Practice Test 5 — 15 questions with explanations. Free, no signup.
Refer to the exhibit. You are analyzing a Power Automate flow definition. The flow is intended to create a new user record in Dataverse and send an email notification when manually triggered or daily at 8 AM. However, when the flow runs on its schedule, it fails because the trigger output 'name' is empty. What is the most likely cause?
Refer to the exhibit.
```json
{
"name": "New Employee Onboarding",
"triggers": {
"manual": true,
"schedule": {
"frequency": "Day",
"interval": 1,
"startTime": "2026-05-01T08:00:00Z"
}
},
"actions": [
{
"type": "CreateRecord",
"entityName": "Users",
"fields": {
"FirstName": "{{triggerOutputs()?['name']}}",
"Department": "IT"
}
},
{
"type": "SendEmail",
"to": "hr@contoso.com",
"subject": "New employee created",
"body": "User {{triggerOutputs()?['name']}} has been created."
}
]
}
```