PL-400 Dumps

PL-400 Free Practice Test

Microsoft PL-400: Microsoft Power Platform Developer

QUESTION 1

- (Topic 6)
A company has two development instances, two test instances, two staging instances, and one production instance.
The test team reports connection issues with the test and staging instances.
You need to identify which of the instances the testing team currently has access. Which two URLs can you use? Each correct answer presents a complete solution.
NOTE: Each correct selection is worth one point.

Correct Answer: CE
Organization information is stored in the Instance entity of the Discovery service. To see the kind of information contained in that entity, send an HTTP GET request to the service for one of your instances.
GET https://dev.{servername}/api/discovery/v9.0/Instances(UniqueName='myorg') Example: Get the details of a specific instance. If you leave out the GUID, all instances that the authenticated user has access to are returned.
GET https://dev.{servername}/api/discovery/v9.0/Instances() Reference:
https://docs.microsoft.com/en-us/dynamics365/customerengagement/on- premises/developer/webapi/discoverurl-organization-web-api

QUESTION 2

HOTSPOT - (Topic 6)
You open a canvas app in edit mode. A warning message displays as shown in the graphic.
PL-400 dumps exhibit
Use the drop-down menus to select the answer choice that answers each question based on the information presented in the graphic.
NOTE: Each correct selection is worth one point.
PL-400 dumps exhibit
Solution:
Box 1: Navigate to Connections and add a new connection
Error message: This app is using a connector for the Common Data Service will not be supported past Oct 1, 2020.
To convert your app that uses the Common Data Service 365 connector, you'll need to remove and add the connections to your data sources.
Box 2: Gallery1

Does this meet the goal?

Correct Answer: A

QUESTION 3

- (Topic 2)
You need to ensure that Adventure Works Cycles can track information from visitors to bike fairs.
What should you create?

Correct Answer: A
Scenario:
Qualified leads must be collected from local bike fairs.
Adventure Works Cycles uses a Power Apps app for local bike fairs to attract new customers.
By using a Dynamics 365 connector, you can create flows that initiate when an event occurs in Dynamics 365, or some other service, which then performs an action in Dynamics 365, or some other service.
In Power Automate, you can set up automated workflows between your favorite apps and services to
synchronize files, get notifications, collect data, and more. Reference:
https://docs.microsoft.com/en-us/power-automate/connection-dynamics365

QUESTION 4

HOTSPOT - (Topic 4)
You need to implement ribbon display rules to control availability for the scoring command button. Which rule types should you use? To answer, select the appropriate options in the answer area. NOTE: Each correct selection is worth one point.
PL-400 dumps exhibit
Solution:
PL-400 dumps exhibit

Does this meet the goal?

Correct Answer: A

QUESTION 5

- (Topic 6)
An organization uses Dynamics 365 Sales. You plan to add a custom button to the app ribbon.
You need to ensure that the button displays only when conditions specified by business rules are met.
Which two code segments can you use? Each correct answer presents a complete solution.
NOTE: Each correct selection is worth one point.

Correct Answer: BD
B: formContext.ui.refreshRibbon(refreshAll);
Causes the ribbon to re-evaluate data that controls what is displayed in it.
Indicates whether all the ribbon command bars on the current page are refreshed. If you specify false, only the page-level ribbon command bar is refreshed. If you do not specify this parameter, by default false is passed.
Remarks: This function is typicaly used when a ribbon (RibbonDiffXml) depends on a value in the form. After your code changes a value that is used by a rule, use this method to force the ribbon to re-evaluate the data in the form so that the rule can be applied.
D: If role is there - just refresh the ribbon to see the button if (isButtonEnabled) {
formContext.ui.refreshRibbon();
}
},
Reference:
https://docs.microsoft.com/en-us/powerapps/developer/model-driven-apps/clientapi/reference/formcontext-ui/refreshribbon
https://community.dynamics.com/crm/f/microsoft-dynamics-crm-forum/302049/show-hide-button-bases-on-different-criteria/871674