00:00

QUESTION 21

- (Topic 6)
You are developing a model-driven app using JavaScript.
You need to configure the app to display a dialog box when a form is opened or when a grid on a form is sorted.
What should you use?

Correct Answer: D

QUESTION 22

DRAG DROP - (Topic 6)
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

Does this meet the goal?

Correct Answer: A

QUESTION 23

DRAG DROP - (Topic 6)
A company is creating a new system based on Microsoft Dataverse.
You need to select the Dataverse features that meet the company's requirements.
Which features should you select? To answer, drag the appropriate features to the correct requirements. Each feature 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.
PL-400 dumps exhibit
Solution:
PL-400 dumps exhibit

Does this meet the goal?

Correct Answer: A

QUESTION 24

- (Topic 3)
You need to configure the trigger for the priority field in the Account entity. Which expression should you use?

Correct Answer: C
A trigger must be created that changes the Priority field to 1 in the Account record 10 days after an Account record is created.
Note:
Date.AddWeeks returns the date, datetime, or datetimezone result from adding numberOfWeeks weeks to the datetime value dateTime.
CreatedOn gets the value to store in the history table indicating when this entry was created.
Reference:
https://docs.microsoft.com/en-us/powerquery-m/date-addweeks https://docs.microsoft.com/en-us/dotnet/api/system.data.entity.migrations.model.inserthistoryoperation.createdon?view=entity-framework-4.3.1
https://docs.microsoft.com/en-us/dotnet/api/system.data.entity.migrations.model.inserthistoryoperation.createdon?view=e ntity-framework-4.3.1

QUESTION 25

- (Topic 6)
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 in the review screen.
A Common Data Service (CDS) environment has two custom entities named Building code and Work item. Building code has a code date custom field and Work item has an elapsed time custom field. Construction workers use a consolidated custom form with data from both entities to fill.in their daily work items.
A JavaScript library is used with these custom entities and fields to apply complex logic. You need to ensure that the JavaScript library continues to function as originally designed if other developers expand the environment.
Solution:
✑ In the Building code form, add the JavaScript library in the events tab and the Code date field to the non-event dependencies.
✑ In the Work item form, add the JavaScript library in the Events tab and the Elapsed time field to the non-event dependencies. Does the solution meet the goal?

Correct Answer: B
Instead, in the JavaScript library, add Building code with Code date and Work item with Elapsed time in the dependencies tab.
Reference:
https://docs.microsoft.com/en-us/dynamics365/customerengagement/on-premises/developer/web-resource-dependencies