PL-400 Dumps

PL-400 Free Practice Test

Microsoft PL-400: Microsoft Power Platform Developer

QUESTION 6

- (Exam Topic 4)
A company updates their client contact information periodically. The contact entity has alternate keys defined.
You have the following code. (Line numbers are included for reference only.)
PL-400 dumps exhibit
For each of the following statements, select Yes if the statement is true. Otherwise, select No.
NOTE: Each correct selection is worth one point.
PL-400 dumps exhibit
Solution:
Reference:
https://docs.microsoft.com/en-us/powerapps/developer/common-data-service/use-alternate-key-create-record

Does this meet the goal?

Correct Answer: A

QUESTION 7

- (Exam Topic 4)
A company implementsDynamics 365 Customer Service. The company deploys synchronous plug-ins for the PreOperation and PostOperation stages on create and for the PostOperation stage on update for processing different case type.
Users experience errors when updating cases. The plug-in trace log files show that the PostOperation plug-in update of case times out after two minutes.
You perform basic testing and discover that this plug-in is triggered on every update of a case. You examine the code and discover that the plug-in retrieves all columns for the updated case record performing its work.
You need to reduce the number of errors. You need to achieve this goal with the test amount of changes. Solution: In the Plug-in Registration tool, set filtering attributes on the plug-in to only Case Type filed. Does the solution meet the goal?

Correct Answer: B

QUESTION 8

- (Exam Topic 4)
You are developing a model-driven app for the purchasing department of an organization. You provision a new test environment and a security role. You select users to test the apps and assign the users to a security group named TestSG.
If the tests succeed, a manager will perform additional testing in the production environment and then publish the app for the organization’s purchasing department.
You need to ensure that the test and production environments are configured correctly. What should you do? To answer, select the appropriate options in the answer area. NOTE: Each correct selection is worth one point.
PL-400 dumps exhibit
Solution:
Box 1: Set the test environment security group to TestSG and assign test users the app security role.
PowerApps apps use role-based security for sharing. The fundamental concept in role-based security is that a security role contains privileges that define a set of actions that can be performed within the app. All app users must be assigned to one or more predefined or custom roles.
Box 2: Assign the manager the app security role.
Box 3: Set the production environment security group to TestSG Box 4: Add all users in the department to the TestSG security group. Reference:
https://docs.microsoft.com/en-us/powerapps/maker/model-driven-apps/share-model-driven-app

Does this meet the goal?

Correct Answer: A

QUESTION 9

- (Exam Topic 4)
A company manages capital equipment for an electric utility company. The company has a SQL Server database that contains maintenance records for the equipment.
Technicians who service the equipment use the Dynamics 365 Field Service mobile app on tablet devices to view scheduled assignments. Technicians use a canvas app to display the maintenance history for each piece of equipment and update the history.
Managers use a Power BI dashboard that displays Dynamics 365 Field Service and real-time maintenance data.
Due to increasing demand, managers must be able to work in the field as technicians. You need to design a solution that allows the managers to work from one single screen. What should you do?

Correct Answer: D
Power BI enables data insights and better decision-making, while Power Apps enables everyone to build and use apps that connect to business data. Using the Power Apps visual, you can pass context-aware data to a canvas app, which updates in real time as you make changes to your report. Now, your app users can derive business insights and take actions from right within their Power BI reports and dashboards.
Reference:
https://docs.microsoft.com/en-us/powerapps/maker/canvas-apps/powerapps-custom-visual

QUESTION 10

- (Exam Topic 4)
An organization has a Dynamics 365 Sales environment. You need to create a Power Apps component.
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.
PL-400 dumps exhibit
Solution:
Step 1: Run pac pcf init –namespace ..
This is the first command which creates basic folder structure of PCF control project. Run the following command to create the control. The format of the control is:
pac pcf init –namespace –name –template

Step 2: Run the npm install command Install Dependencies
Once ‘init’ sets up the basic folder, as a next step install all the PCF control dependencies using ‘npm install’ command.
Example:
PL-400 dumps exhibit
Now at this point, there is nothing we have actually created. However, the solution created contains sample PCF control code.
Step 3: Run the following np run build command Build PCF Component.
Once you implement the PCF component, build the code for any syntax errors. Syntax:
npm run build
PL-400 dumps exhibit
Reference:
https://rajeevpentyala.com/2020/03/21/power-apps-component-framework-pcf-demystify/ https://carldesouza.com/creating-a-custom-component-using-the-powerapps-component-framework/

Does this meet the goal?

Correct Answer: A