Exam4Training

Microsoft PL-400 Microsoft Power Platform Developer Online Training

Question #1

Topic 1, Bellows Sports

Case study

This is a case study. Case studies are not timed separately. You can use as much exam time as you would like to complete each case. However, there may be additional case studies and sections on this exam. You must manage your time to ensure that you are able to complete all questions included on this exam in the time provided.

To answer the questions included in a case study, you will need to reference information that is provided in the case study. Case studies might contain exhibits and other resources that provide more information about the scenario that is described in the case study. Each question is independent of the other questions in this case study.

At the end of this case study, a review screen will appear. This screen allows you to review your answers and to make changes before you move to the next section of the exam. After you begin a new section, you cannot return to this section.

To start the case study

To display the first question in this case study, click the Next button. Use the buttons in the left pane to explore the content of the case study before you answer the questions. Clicking these buttons displays information such as business requirements, existing environment, and problem statements. If the case study has an All Information tab, note that the information displayed is identical to the information displayed on the subsequent tabs. When you are ready to answer a question, click the Question button to return to the question.

Background

Bellows Sports is the region’s newest, largest, and most complete sports complex. The company features baseball and soccer fields and two full-size hockey rinks. The complex provides coaching, recreational leagues, a pro shop, and state-of-the art customer and player amenities.

The company is organized into the following divisions:

– Baseball

– Hockey

– Soccer

Bellow Sports runs tournaments several times per year. Each tournament runs six weeks.

Current environment

Requirements

Bellow Sports tracks players and events in Microsoft Excel workbooks and uses email to communicate with players, partners, and prospective customers. The company uses a proprietary cloud-based accounting system.

The company relies on referrals from athletes for new business. Bellows uses a third-party marketing company to gather feedback and referrals from athletes. The third-party marketing company uploads a Microsoft Excel file containing lists of potential customers and players to the FTP site that Bellows Sports maintains.

Tournaments

Customer information is stored in the Accounts entity. Each tournament record must list the associated sales representative as the tournament owner. When team members create tournament records they must enter the start date for a tournament. The end date of the tournament must be automatically calculated.

Registration form

You must create a form to allow players to register for tournaments.

The registration form must meet the following requirements:

– Each division has tournaments that take place in specific locations. Users must be able to select the division for a tournament location.

– Information about upcoming tournaments must be pre-located into the registration form when the registration form loads.

– The form must include a custom button that sends an email confirmation to the player after the player registers.

– The button must not be visible until after the form is saved.

Security

The company identifies the following job roles:

You must grant users the minimum permissions required to perform their job tasks.

Data automation

– Customer name must be added to Dynamics 365 Finance automatically after it is entered.

– 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.

– You must implement mechanisms to handle all code-related errors.

– When a customer record is updated, the system must look up the account number for the customer in the accounting system.

– Referrals must be imported into the system as soon as they are available.

Issues

Apps

– The captions for the New and Save buttons do not render properly on the form.

– Interns can create apps but cannot interact with their own data.

Portal

The query for all registered users must return the data categorized by division. Queries must return only the Name and Sport fields. Queries return all fields.

The query is as follows:

Solution checker issues

You run solution checker and observe Plug-in or workflow activity errors in the following code sets:

Code

The following code runs when the registration form loads.

You must implement a mechanism to handle errors that occur in the code:

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.

Reveal Solution Hide Solution

Correct Answer:

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, Unified Activity, 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.

Reference: https://docs.microsoft.com/en-us/connectors/custom-connectors/

https://docs.microsoft.com/en-us/dynamics365/customer-insights/audience-insights/export-power-apps


Question #2

You need to determine the primary cause of the issue reported by interns when they use the app.

What is the primary cause?

  • A . Interns have the System Customizer security role but need the Environment Maker security role.
  • B . Interns have the Common Data Service User security role but need the Environment Maker security role.
  • C . Interns have the Environment Maker security role but need the Common Data Service User security role.
  • D . Interns have the Environment Maker security role but need the System Customizer security role.
  • E . Interns have the Environment Maker security role but need the Delegate security role.

Reveal Solution Hide Solution

Correct Answer: D
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.

Reference: https://docs.microsoft.com/en-us/power-platform/admin/database-security

Question #3

You need to handle errors in UpdateRecord.js.

Which code segment should you add at line UR06?

  • A . catch(error) {
    alert("Caught error: " + error.message);}
  • B . Exception exception = Server.GetLastError() ;
    if(exception != null)}
  • C . catch(exception e){
    console.writeline(e)}
  • D . function (error){
    console.log(error.message)}

Reveal Solution Hide Solution

Correct Answer: A
A

Explanation:

https://docs.microsoft.com/en-us/powerapps/developer/model-driven-apps/clientapi/reference/xrm-webapi/updaterecord

Question #4

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.

Reveal Solution Hide Solution

Correct Answer:

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.

Reference:

https://support.microsoft.com/en-us/help/4552163/ribbon-troubleshooting-guide

https://neilparkhurst.com/2015/10/19/adding-buttons-to-ribbons/


Question #5

You need to add the script for the registration form event handling.

Which code segment should you use?

  • A . formContext.data.entity.addOnSave(myFunction)
  • B . formContext.data.addOnLoad(myFunction)
  • C . formContext.data.removeOnLoad(myFunction)
  • D . addOnPreProcessStatusChange
  • E . formContext.data.isValid()

Reveal Solution Hide Solution

Correct Answer: B
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.

Reference: https://docs.microsoft.com/en-us/powerapps/developer/model-driven-apps/clientapi/reference/grids/gridcontrol/addonload

Question #6

DRAG DROP

You need to assign security roles to groups of users.

Which security roles should you use? To answer, drag the appropriate security types to the correct roles. Each security type 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.

Reveal Solution Hide Solution

Correct Answer:

Explanation:

Scenario: The company identifies the following job roles:

You must grant users the minimum permissions required to perform their job tasks.

Intern: Environment Maker

Environment Maker: 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.

Manager: System Administrator:

System Administrator: Has full permission to customize or administer the environment, including creating, modifying, and assigning security roles. Can view all data in the environment.

Sales representative: Common Data Service User

Basic User/ Common Data Service User: Read (self), Create (self), Write (self), Delete (self)

Can run an app within the environment and perform common tasks for the records that they own.


Question #7

HOTSPOT

You need to select data types for required fields.

Which data types should you use? To answer, select the appropriate options in the answer area. NOTE: Each correct selection is worth one point.

Reveal Solution Hide Solution

Correct Answer:

Explanation:

Box 1: Option Set

Box 2: Date only

When team members create tournament records they must enter the start date for a tournament.

The end date of the tournament must be automatically calculated.

Box 3: Lookup

Customer information is stored in the Accounts entity. Each tournament record must list the associated sales representative as the tournament owner.

Note: When you create a new lookup column you are creating a new Many-to-One (N:1) table relationship between the table you’re working with and the Target Row Type defined for the lookup. There are additional configuration options for this relationship that are described in Create and edit relationships between tables. But all custom lookups can only allow for a reference to a single row for a single target row type.

Reference: https://docs.microsoft.com/en-us/powerapps/maker/data-platform/types-of-fields


Question #8

You need to configure the system to support automation for referrals.

What are two possible ways to achieve the goal? Each correct selection presents a complete solution. NOTE: Each correct selection is worth one point.

  • A . Azure Function that uses the Discovery service
  • B . workflow extension
  • C . Azure Function that uses a listener
  • D . Power Automate flow

Reveal Solution Hide Solution

Correct Answer: CD
CD

Explanation:

https://docs.microsoft.com/en-us/dotnet/api/system.io.filesystemwatcher

https://docs.microsoft.com/en-us/power-automate/

Question #9

DRAG DROP

You need to determine how to implement rules for players who register for a soccer tournament.

Which business rule actions should you use? To answer, drag the appropriate business rule actions to the correct fields. Each business rule 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.

Reveal Solution Hide Solution

Correct Answer:

Explanation:

Scenario:

Weight: Set visibility action to No.

Age: Set Business Required action to Business required

Height: Set visibility action to No.


Question #10

You need to add the script to populate event data on the form.

Which code segment should you use?

  • A . formContext.data.addOnLoad(myFunction)
  • B . formContext.data.removeOnLoad(myFunction)
  • C . formContext.data.entity.addOnSave(myFunction)
  • D . addOnPreProcessStatusChange
  • E . formContext.data.isValid()

Reveal Solution Hide Solution

Correct Answer: A

Question #11

HOTSPOT

You need to correct the portal query issues.

Which code should you use? To answer, select the appropriate options in the answer area. NOTE: Each correct selection is worth one point.

Reveal Solution Hide Solution

Correct Answer:

Explanation:

Scenario: The query for all registered users must return the data categorized by division. Queries must return only the Name and Sport fields. Queries return all fields.

The query is as follows:

Box 1: GET ..$select=name, sport

Use select to return only the Name and Sport fields.

Box 2: $apply(groupby(sport ne null)

Categorize by division, that is to sports.


Question #12

Topic 2, Adventure Works

Case study

This is a case study. Case studies are not timed separately. You can use as much exam time as you would like to complete each case. However, there may be additional case studies and sections on this exam. You must manage your time to ensure that you are able to complete all questions included on this exam in the time provided.

To answer the questions included in a case study, you will need to reference information that is provided in the case study. Case studies might contain exhibits and other resources that provide more information about the scenario that is described in the case study. Each question is independent of the other questions in this case study.

At the end of this case study, a review screen will appear. This screen allows you to review your answers and to make changes before you move to the next section of the exam. After you begin a new section, you cannot return to this section.

To start the case study

To display the first question in this case study, click the Next button. Use the buttons in the left pane to explore the content of the case study before you answer the questions. Clicking these buttons displays information such as business requirements, existing environment, and problem statements. If the case study has an All Information tab, note that the information displayed is identical to the information displayed on the subsequent tabs. When you are ready to answer a question, click the Question button to return to the question.

Background

Current environment

Adventure Works Cycles wants to replace their paper-based bicycle manufacturing business with an efficient paperless solution. The company has one manufacturing plant in Seattle that produces bicycle parts, assembles bicycles, and distributes finished bicycles to the Pacific Northwest.

Adventure Works Cycles has a retail location that performs bicycle repair and warranty repair work. The company has six maintenance vans that repair bicycles at various events and residences.

Adventure Works Cycles recently deployed Dynamics 365 Finance and Dynamics 365 Manufacturing in a Microsoft-hosted environment for financials and manufacturing. The company plans to leverage the Microsoft Power Platform to migrate all of their distribution and retail workloads to Dynamics 365 Unified Operations.

The customer uses Dynamics 365 Sales. Dynamics 365 Customer Service and Dynamics 365 Field Service.

Retail store information

✑ Adventure Works Cycle has one legal entity, four warehouses, and six field service technicians.

✑ Warehouse counting is performed manually by using a counting journal. All warehouse boxes and items are barcoded.

✑ The Adventure Works Cycles retail location performs bicycle inspections and performance tune-ups.

✑ Technicians use paper forms to document the bicycle inspection performed before a tune-up and any additional work performed on the bicycle.

✑ Adventure Works Cycles uses a Power Apps app for local bike fairs to attract new customers.

✑ A canvas app is being developed to capture customer information when customers check in at the retail location. The app has the following features:

Technology

Requirements

✑ A plug-in for Dynamics 365 Sales automatically calculated the total billed time from all activities on a particular customer account, including sales representative visits, phone calls, email correspondence, and repair time compared with hours spent.

✑ A shipping API displays shipping rates and tracking information on sales orders. The contract allows for 3,000 calls per month.

✑ Ecommerce orders are processed in batch daily by using a manual import of sales orders in Dynamics 365 Finance.

✑ Microsoft Teams is used for all collaboration.

✑ All testing and problem diagnostics are performed in a copy of the production environment.

✑ Customer satisfaction surveys are recorded with Microsoft Forms Pro. Survey replies from customers are sent to a generic mailbox.

Automation

✑ A text message must be automatically sent to a customer to confirm an appointment and to notify when a technician is on route that includes their location.

✑ Ecommerce sales orders must be integrated into Dynamics 365 Finance and then exported to Azure every night.

✑ A text alert must be sent to employees scheduled to assist in the repair area of the retail store if the number of repair check-ins exceeds eight.

✑ Submitted customer surveys must generate an email to the correct department. Approval and follow-up must occur within a week.

Reporting

✑ The warehouse manager’s dashboard must contain warehouse counting variance information.

✑ A warehouse manager needs to quickly view warehouse KPIs by using a mobile device.

✑ Power BI must be used for reporting across the organization.

User experience

✑ Warehouse counting must be performed by using a mobile app that scans barcodes on boxes.

✑ All customer repairs must be tracked in the system no matter where they occur.

✑ Qualified leads must be collected from local bike fairs.

Issues

✑ Warehouse counting must be performed by using a mobile app that scans barcodes on boxes.

✑ All customer repairs must be tracked in the system no matter where they occur.

✑ Qualified leads must be collected from local bike fairs.

Internal

✑ User1 reports receives an intermittent plug-in error when viewing the total bill customer time.

✑ User2 reports that Azure consumption for API calls has increased significantly to 100 calls per minute in the last month.

✑ User2 reports that sales orders have increased.

✑ User5 receives the error message: ‘Endpoint unavailable’ during a test of the technician dispatch ISV solution.

✑ The parts department manager who is the approver for the department is currently on sabbatical.

External

✑ CustomerB reports that the check-in app returned only one search result for their last name, which is not the correct name.

✑ Nine customers arrive in the repair area of the retail store, but no texts were sent to scheduled employees.

✑ Customers report that the response time from the information email listed on the Adventure Works Cycles website is greater than five days.

✑ CustomerC requested additional information from the parts department through the customer survey and has not received a response one week later.

You need to improve warehouse counting efficiency.

What should you create?

  • A . a flow that updates the warehouse counts as the worker performs the count
  • B . a model-driven app that allows the user to key in inventory counts
  • C . A Power BI dashboard that shows the inventory counting variances
  • D . a canvas app that scans barcodes to allow a warehouse worker to select inventory counts

Reveal Solution Hide Solution

Correct Answer: D
D

Explanation:

Scenario: Warehouse counting is performed manually by using a counting journal. All warehouse boxes and items are barcoded.

Question #13

You need to replace the bicycle inspection forms.

Which two solutions should you use? Each answer presents part of the solution. NOTE: Each correct selection is worth one point.

  • A . a flow that maps inspection data to Dynamics 365 Field Service
  • B . a logic app that guides the technician through the inspection
  • C . a canvas app that guides the technician through the inspection
  • D . a model-driven app based on customer service entities

Reveal Solution Hide Solution

Correct Answer: AD
AD

Explanation:

Scenario: The Adventure Works Cycles retail location performs bicycle inspections and performance tune-ups. Technicians use paper forms to document the bicycle inspection performed before a tune-up and any additional work performed on the bicycle.

Reference:

https://docs.microsoft.com/en-us/dynamics365/field-service/overview

https://us.hitachi-solutions.com/blog/canvas-vs-model-driven-apps/

Question #14

You need to resolve CustomerB’s issues with the check-in application.

Which two options can you use? Each correct answer presents a complete solution. NOTE: Each correct selection is worth one point.

  • A . LookUp to Filter
  • B . Filter to LookUp
  • C . Search to LookUp
  • D . LookUp to Search

Reveal Solution Hide Solution

Correct Answer: AD
AD

Explanation:

CustomerB reports that the check-in app returned only one search result for their last name, which is not the correct name.

The Filter function finds records in a table that satisfy a formula. Use Filter to find a set of records that match one or more criteria and to discard those that don’t.

The LookUp function finds the first record in a table that satisfies a formula. Use LookUp to find a single record that matches one or more criteria.

The Search function finds records in a table that contain a string in one of their columns.

Reference: https://docs.microsoft.com/en-us/powerapps/maker/canvas-apps/functions/function-filter-lookup

Question #15

You need to identify the execution mode that is being used for the ISV solution reported by User5.

Which type of execution mode is in use?

  • A . asynchronous
  • B . atomicity
  • C . transfer
  • D . synchronous

Reveal Solution Hide Solution

Correct Answer: A
A

Explanation:

User5 receives the error message: ‘Endpoint unavailable’ during a test of the technician dispatch ISV solution.

When you choose to use a synchronous execution mode any failure will be reported back to the user of the application with an Endpoint unavailable error dialog informing the user that the webhook service endpoint may be configured incorrectly or is not available.

Reference: https://docs.microsoft.com/en-us/powerapps/developer/common-data-service/use-webhooks

Question #16

You need to modify Microsoft flow to resolve CustornerCs issue.

What should you do?

  • A . Add a data operation that specifies the false conditions.
  • B . Add a configure run that is set to Is successful.
  • C . Add a timeout setting to the approval flow.
  • D . Add b condition containing approval hierarchy.

Reveal Solution Hide Solution

Correct Answer: C
C

Explanation:

Scenario: CustomerC requested additional information from the parts department through the customer survey and has not received a response one week later.

Imagine having a process where you want to give someone a couple of days to reply to an approval. If that someone doesn’t respond in time, you want to assign a new approval to another person or group of people. To achieve this you can set the timeout in the action settings.

Reference: https://www.o365dude.com/2018/06/02/timeout-flow-approvals/

Question #17

You need to reduce response time for the information email on the website.

What should you create?

  • A . A flow that create a notification in Microsoft Teams
  • B . A power Apps app that displays the number of emails received in a dashboard
  • C . A flow that creates a SharePoint item for each email response
  • D . Logic app that moves all emails received to Azure Blob storage.

Reveal Solution Hide Solution

Correct Answer: A
A

Explanation:

Scenario:

Customers report that the response time from the information email listed on the Adventure Works

Cycles website is greater than five days.

Microsoft Teams is used for all collaboration.

Question #18

You need to ensure that Adventure Works Cycle can track information from visitors to bike fairs.

What should you create?

  • A . A workflow in Dynamics 365 Sales Engagement for capabilities leads
  • B . A flow to capture customer data from the bike fair Power Apps in SharePoint and create a lead in Microsoft Teams.
  • C . A flow that connects with the bike fair Power Apps to create a lead in Dynamic 365 Sales
  • D . A Microsoft flow that generates a new customer record in SharePoint

Reveal Solution Hide Solution

Correct Answer: C
C

Explanation:

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.

Reference: https://docs.microsoft.com/en-us/power-automate/connection-dynamics365

Question #19

HOTSPOT

You need to select the visualization component.

What should you use? To answer, select the appropriate options in the answer area. NOTE: Each correct selection is worth one point.

Reveal Solution Hide Solution

Correct Answer:

Explanation:

Box 1: Flip switch

The Field Type to use Flip Switch would be ‘Two options’.

If you go by UI perspective, Flip switch control- Yes/No (Boolean) options would give the nice field look in the web, mobile app and Tablet. Instead of using check boxes and radio buttons, this control adds a visual effect like the On/Off switch way.

Box 2: Linear gauge

Box 3: Option Set

Option sets are the ideal choice for offering users a list of defined options for a field selection.

Reference:

https://www.inogic.com/blog/2018/04/controls-in-dynamics-365-for-mobile-app-flip-switch/

https://community.dynamics.com/365/sales/b/crminogic/posts/new-controls-for-phones-and-tablets-in-dynamics-crm-2016-update-1


Question #20

DRAG DROP

You need to resolve the performance issue with the Total Billed customer plug-in.

In which order should you perform the actions? To answer, move all actions from the list of actions to the answer area and arrange them in the correct order.

Reveal Solution Hide Solution

Correct Answer:

Explanation:

Scenario: User1 reports that performance is slow when viewing total billed customer time.

A plug-in for Dynamics 365 Sales automatically calculates the total billed time from all activities on a particular customer account, including sales representatives’ visits, phone calls, email correspondence, and repair time compared with hours spent.

Reference: https://docs.microsoft.com/en-us/dynamics365/customerengagement/on-premises/developer/register-deploy-plugins


Question #21

You need to reduce response time for the information email on the website.

What should you create?

  • A . a flow that creates a SharePoint item for each email response
  • B . a flow that creates a notification in Microsoft Teams
  • C . a Power Apps app that displays the number of email received in a dashboard
  • D . a logic app that moves all emails received to Azure Blob storage

Reveal Solution Hide Solution

Correct Answer: B
B

Explanation:

Scenario:

Customers report that the response time from the information email listed on the Adventure Works Cycles website is greater than five days.

Microsoft Teams is used for all collaboration.

Microsoft teams support email notifications.

Reference: https://support.microsoft.com/en-us/office/manage-notifications-in-teams-1cc31834-5fe5-412b-8edb-43fecc78413d

Question #22

DRAG DROP

You need to identify why employees are not receiving notification that nine customers are checked in and waiting in the repair area.

Which components should you test for each step? To answer, drag the appropriate components to the correct steps. Each component 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.

Reveal Solution Hide Solution

Correct Answer:

Explanation:

Scenario: A text alert must be sent to employees scheduled to assist in the repair area of the retail store if the number of repair check-ins exceeds eight.

Box 1: action

Box 2: condition

Box 3: data operation


Question #23

You need to improve the efficiency of counting warehouse inventory.

What should you create?

  • A . a model-driven app that allows the user to key in inventory counts
  • B . a Power BI dashboard that shows the inventory counting variances
  • C . a flow that updates the warehouse counts as the worker performs the count
  • D . a canvas app that scans barcodes to allow a warehouse worker to select inventory counts

Reveal Solution Hide Solution

Correct Answer: D
D

Explanation:

Scenario: Warehouse counting is performed manually by using a counting journal. All warehouse boxes and items are barcoded.

Barcode scanner control for canvas apps: Scans barcodes, QR codes, and data-matrix codes on an Android or iOS device.

Description

The control opens a native scanner on an Android or iOS device. The scanner automatically detects a barcode, a QR code, or a data-matrix code when in view.

Reference: https://docs.microsoft.com/en-us/powerapps/maker/canvas-apps/controls/control-new-barcode-

scanner

Question #24

HOTSPOT

You need to select visualization components.

What should you use? To answer, select the appropriate options from the answer area. NOTE: Each correct selection is worth one point.

Reveal Solution Hide Solution

Correct Answer:

Explanation:

Scenario: Customer satisfaction surveys are recorded with Microsoft Forms Pro.

Box 1: Flip switch

The flip switch is like an on/off switch, providing a choice between two values.

Box 2: Linear gauge

The linear gauge lets your users input numerical values by dragging a slider instead of typing in the exact quantity. The slider provides whole number input and display only. Use this control for any numerical and money columns.

Box 3: Option set

The choice control presents a set of options for your users to choose from when entering data.

You can customize forms (main, quick create, and quick view) and email templates by adding multi-select columns that are called Choices. When you add a choices column, you can specify multiple values that will be available for users to select. When users fill out the form they can select one, multiple, or all the values displayed in a drop-down list.

Reference: https://docs.microsoft.com/en-us/powerapps/maker/model-driven-apps/additional-controls-for-dynamics-365-for-phones-and-tablets


Question #25

You need to modify the Power Automate flow to resolve CustomerC’s issue.

What should you do?

  • A . Add a configure run that is set to is successful.
  • B . Add a data operation that specifies the false conditions.
  • C . Add a condition containing approval hierarchy.
  • D . Add a timeout setting to the approval flow.

Reveal Solution Hide Solution

Correct Answer: C
C

Explanation:

Scenario: CustomerC requested additional information from the parts department through the customer survey and has not received a response one week later.

Reference: https://docs.microsoft.com/en-us/power-automate/sequential-modern-approvals

Question #26

DRAG DROP

You need to recommend solutions to meet the e-commerce automation requirements.

Which platform tools should you recommend? To answer, drag the appropriate tools to the correct requirements. Each tool 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.

Reveal Solution Hide Solution

Correct Answer:

Explanation:

Box 1: Logic Apps

Scenario: Ecommerce sales orders must be integrated into Dynamics 365 Finance and then exported to Azure every night.

For integration with Dynamics 365 Logic Apps can be used. It also supports scheduled actions.

For integration with Azure use Logic Apps, instead of Power Automate.

Incorrect Answers:

Workflow does not support run on schedule.

Power Automate does not support Azure integration. (For integration with Dynamics 365 Power Automate can be used. It also supports scheduled actions.)

Box 2: Power Automate

Scenario: Submitted customer surveys must generate an email to the correct department. Approval and follow-up must occur within a week.

Power Automate has approval flows.

Incorrect Answers:

Workflow does not support Approval workflows.

Reference:

https://docs.microsoft.com/en-us/microsoft-365/community/power-automate-vs-logic-apps

https://docs.microsoft.com/en-us/power-automate/replace-workflows-with-flows


Question #27

You need to ensure that Adventure Works Cycles can track information from visitors to bike fairs.

What should you create?

  • A . a Power Automate flow that connects with the bike fair Power Apps app to create a lead in Dynamics 365 Sales
  • B . a Power Automate flow that generates a new customer record in SharePoint.
  • C . a Power Automate flow to capture customer data from the bike fair Power Apps app in SharePoint and create a lead in Microsoft Teams.
  • D . a business process flow in Dynamics 365 Sales for capturing leads.

Reveal Solution Hide Solution

Correct Answer: A
A

Explanation:

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 #28

You need to reduce the number of Azure consumption API calls for User2.

Which markup segment should you use?

A)

B)

C)

D)

  • A . Option A
  • B . Option B
  • C . Option C
  • D . Option D

Reveal Solution Hide Solution

Correct Answer: C
C

Explanation:

Scenario: User2 reports that Azure consumption for API calls has increased significantly to 100 calls per minute in the last month.

Example:

In the following example, the rate limit of 10 calls per 60 seconds is keyed by the caller IP address. After each policy execution, the remaining calls allowed in the time period are stored in the variable remainingCallsPerIP.

<policies>

<inbound>

<base />

<rate-limit-by-key calls="10"

renewal-period="60"

increment-condition="@(context.Response.StatusCode == 200)"

counter-key="@(context.Request.IpAddress)"

remaining-calls-variable-name="remainingCallsPerIP"/>

</inbound>

<outbound>

<base />

</outbound>

</policies>

Note: The rate-limit-by-key policy prevents API usage spikes on a per key basis by limiting the call rate to a specified number per a specified time period. The key can have an arbitrary string value and is typically provided using a policy expression. Optional increment condition can be added to specify which requests should be counted towards the limit. When this call rate is exceeded, the caller receives a 429 Too Many Requests response status code.

Incorrect Answers:

A: With renewal-period="30" 200 calls/minute would be allowed.

B: This would increase the calls/minute limit to 1000.

Reference: https://docs.microsoft.com/en-us/azure/api-management/api-management-access-restriction-policies

Question #28

You need to reduce the number of Azure consumption API calls for User2.

Which markup segment should you use?

A)

B)

C)

D)

  • A . Option A
  • B . Option B
  • C . Option C
  • D . Option D

Reveal Solution Hide Solution

Correct Answer: C
C

Explanation:

Scenario: User2 reports that Azure consumption for API calls has increased significantly to 100 calls per minute in the last month.

Example:

In the following example, the rate limit of 10 calls per 60 seconds is keyed by the caller IP address. After each policy execution, the remaining calls allowed in the time period are stored in the variable remainingCallsPerIP.

<policies>

<inbound>

<base />

<rate-limit-by-key calls="10"

renewal-period="60"

increment-condition="@(context.Response.StatusCode == 200)"

counter-key="@(context.Request.IpAddress)"

remaining-calls-variable-name="remainingCallsPerIP"/>

</inbound>

<outbound>

<base />

</outbound>

</policies>

Note: The rate-limit-by-key policy prevents API usage spikes on a per key basis by limiting the call rate to a specified number per a specified time period. The key can have an arbitrary string value and is typically provided using a policy expression. Optional increment condition can be added to specify which requests should be counted towards the limit. When this call rate is exceeded, the caller receives a 429 Too Many Requests response status code.

Incorrect Answers:

A: With renewal-period="30" 200 calls/minute would be allowed.

B: This would increase the calls/minute limit to 1000.

Reference: https://docs.microsoft.com/en-us/azure/api-management/api-management-access-restriction-policies

Question #30

HOTSPOT

You need to configure the fields with the appropriate type.

Which type should you use? To answer, select the appropriate options in the answer area. NOTE: Each correct selection is worth one point.

Reveal Solution Hide Solution

Correct Answer:

Explanation:

Box 1: Lookup

Fields for the doctor’s name and phone number must be displayed in the customer record.

Lookup: A field that allows setting a reference to a single record of a specific type of entity.

Box 2: Calculated

Refill dates for customer prescriptions should be automatically determined and a notification should be sent to the customer.

Calculated field: Contains calculations that use fields from the current entity or related parent entities.

Box 3: Text

Field data type: Single Line of Text:

This field can contain up to 4,000 text characters. You can set the maximum length to be less than this. This field has several format options that will change the presentation of the text. These options are Email, Text, Text Area, URL, Ticker Symbol, and Phone.

Reference: https://docs.microsoft.com/en-us/dynamics365/customerengagement/on-premises/customize/types-of-fields


Question #31

You need to ensure that users can create the required charts.

Which two actions should you perform? Each correct answer presents part of the solution. NOTE: Each correct selection is worth one point.

  • A . Create a quick view form to show the Accounts entity.
  • B . Configure filter fields in the Annual revenue field.
  • C . Add the Facility field to the account form.
  • D . Delete the Annual revenue field from the account form.
  • E . Create a view with annual revenue sorted lowest value to highest value.

Reveal Solution Hide Solution

Correct Answer: BC
BC

Explanation:

Pharmacy orders must be displayed in four graphs as follows:

✑ Annual revenue over $100,000

✑ Annual revenues under $100,000

✑ Research facilities

✑ Hospitals

The graphs must be interactive, and users must be able to drill down on any dimension.

Question #32

DRAG DROP

You need to select a process to create each function.

Which process should you use? To answer, drag the appropriate processes to the correct functions. Each process 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.

Reveal Solution Hide Solution

Correct Answer:

Explanation:

Box 1: Power Automate

Ensure that notifications are sent to the sales team when a lead is added by using Slack

Power Automate is a service that helps you create automated workflows between your favorite apps and services to synchronize files, get notifications, collect data, and more.

Box 2: Business rule

A trigger must be created that changes the Priority field to 1 in the Account record 10 days after an account record is created.

A field named Priority_Trigger must be created to trigger the Priority field.

Business rules provide a simple interface to implement and maintain fast-changing and commonly used rules.

Box 3: Business process flow

Ensure that leads have a review stage added to the sales process.

Use business process flows to define a set of steps for people to follow to take them to a desired outcome. These steps provide a visual indicator that tells people where they are in the business process.

Reference:

https://docs.microsoft.com/en-us/power-automate/

https://docs.microsoft.com/en-us/dynamics365/customerengagement/on-premises/customize/create-business-rules-recommendations-apply-logic-form

https://docs.microsoft.com/en-us/power-automate/business-process-flows-overview


Question #33

You need to create the model-driven app for referral.

Which function should you add?

  • A . Flow
  • B . Workflow
  • C . Business rule
  • D . Chart
  • E . Subgrid

Reveal Solution Hide Solution

Correct Answer: C
C

Explanation:

Scenario: When the account is entered into the system, extra fields must appear if the referral customer box is selected. If the box is not selected, the extra fields must not appear.

Question #34

You need to create an application to deploy to other pharmacies.

What should you do?

  • A . Navigate to Customize the System and export everything to a managed solution.
  • B . Recreate customizations in a new environment.
  • C . Export the solution as a managed solution.
  • D . Write a Web API to move customizations.

Reveal Solution Hide Solution

Correct Answer: A
Question #35

You need to configure that the mobile app meets the requirements for phone entries.

Which expression should you use?

  • A . PlainText
  • B . IsMatch
  • C . IsType
  • D . IsNumeric

Reveal Solution Hide Solution

Correct Answer: D
D

Explanation:

When a pharmacy is added by using the mobile app, the phone number must be validated to be all digits.

Note: The IsNumeric function tests whether a value is numeric. Other kinds of values include Boolean, string, table, and record.

The return value is a Boolean true or false.

Reference: https://docs.microsoft.com/en-us/powerapps/maker/canvas-apps/functions/function-isnumeric

Question #36

You need to configure the trigger for account records.

Which expression should you use?

  • A . ADDWEEKS(1, CreatedOn)
  • B . ADDDAYS(10, CreateOn)
  • C . SUBTRACTDAYS(10, Now())
  • D . DIFFINDAYS(CreatedOn, now())
  • E . DIFFINWEEKS(now, 1)

Reveal Solution Hide Solution

Correct Answer: D
D

Explanation:

Scenario: A trigger must be created that changes the Priority field to 1 in the Account record 10 days after an Account record is created.

DIFFINDAYS (date and time, date and time): Returns the difference in days between two Date and Time fields. If both dates and times fall on the same day, the difference is zero.

Note: Whenever we talk about history, the bone of contention are the below four fields:

✑ CreatedOn

✑ ModifiedOn

✑ CreatedBy

✑ ModifiedBy

Reference: https://docs.microsoft.com/en-us/dynamics365/customerengagement/on-premises/customize/define-calculated-fields

Question #37

DRAG DROP

You need to assign the minimum environment security role to the appropriate users.

Which security roles should you use? To answer, drag the appropriate security roles to the correct users. Each security role 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.

Reveal Solution Hide Solution

Correct Answer:

Explanation:

Box 1: Common Data Service User

UserA must be able to create and publish PowerApps apps.

Common Data Service directly against your core business data already used within Dynamics 365 without the need for integration.

✑ Build Apps against your Dynamics 365 Data

✑ Manage reusable Business logic and rules

✑ Reusable skills across Dynamics 365 and Power Apps

Box 2: Environment Maker

UserB must be the owner of all the systems and be able to provide permissions and create all new environments.

The Environment Maker role can create resources within an environment including apps, connections, custom connectors, gateways, and flows using Power Automate.

Box 3: System Administrator

UserC must be able to create apps connected to the systems and update the security roles and entities.

System Administrator is the highest level role which encompasses all the privileges and has over-riding rights. The System Administrator has the authority to allow and remove access of other users and define the extent of their rights. For example, the System Administrator and the System Customizer are given access to custom entities by default while all other users need to be given access. This is the only role that cannot be edited.

Box 4: System Customizer

End users must have minimum access to the required systems.

Sales users must only have access to their own records.

The System Customizer role is similar to the System Administrator role which enables non-system administrators to customize Dynamics 365. A Customizer is a user who customizes entities, attributes and relationships.

Reference:

https://docs.microsoft.com/en-us/power-platform/admin/environments-overview

https://crmbook.powerobjects.com/system-administration/business-administration/security-roles/


Question #38

DRAG DROP

You need to select a process to create each function.

Which process should you use? To answer, drag the appropriate processes to the correct functions. Each process 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.

Reveal Solution Hide Solution

Correct Answer:

Explanation:

Box 1: Microsoft flow

Using Microsoft Flow, you can automatically post to Slack when an event happens in Dynamics 365, enabling similar functionality that is available with the Microsoft Yammer integration with third-party collaboration tools.

Box 2: Workflow

Box 3: Business process flow

A business process flow is composed of Stages, and within each stage there are Steps to complete which are fields. In the business process flow heading, a user can see which stage they are at in the process, and which steps they need to complete before they proceed in the process.

Business process flows enable you to require users to complete certain steps before completing the process and if needed you can also allow users to jump stages.

Reference: https://us.hitachi-solutions.com/blog/dynamics-365-workflow-vs-microsoft-flow/


Question #39

DRAG DROP

You need to assign the minimum environmental security role to the appropriate users.

Which security roles should you use? To answer, drag the appropriate security roles to the correct users. Each security role 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.

Reveal Solution Hide Solution

Correct Answer:

Explanation:

Box 1: Environment Maker

UserA must be able to create and publish Power Apps apps.

The Environment Maker role can create resources within an environment including apps, connections, custom connectors, gateways, and flows using Power Automate.

Box 2: System Administrator

UserB must be the owner of all the systems and be able to provide permissions and create all new environments.

The System Administrator has full permission to customize the system. Can view all data in the system.

Box 3: System Customizer

UserC must be able to create apps connected to the systems and update the security roles and entities.

The System Customizer has full permission to customize the system. Can only view rows for system tables that they create.

The difference between the System Administrator and System Customizer security roles is that a system administrator has read privileges on most rows in the system and can see everything. Assign the System Customizer role to someone who needs to perform customization tasks but shouldn’t see any data in the system tables.

Box 4: Common Data Service User

To stay consistent with our product rebranding effort, the security role Common Data Service User is being changed to Basic User.

The Basic User security role primarily contains Basic privileges for core entities where the user can write, update, and delete records that they created or owned.

Reference:

https://docs.microsoft.com/en-us/power-platform/admin/environments-overview

https://docs.microsoft.com/en-us/powerapps/maker/model-driven-apps/privileges-required-customization – system-administrator-and-system-customizer-security-roles

https://docs.microsoft.com/en-us/powerapps/maker/model-driven-apps/privileges-required-customization#system-administrator-and-system-customizer-security-roles

https://docs.microsoft.com/en-us/power-platform-release-plan/2020wave2/data-platform/common-data-service-user-security-role-renamed-basic-user

https://docs.microsoft.com/en-us/power-platform-release-plan/2020wave2/data-platform/common-data-service-user-security-role-renamed-basic-user


Question #40

You need to create an application to deploy to other pharmacies.

What should you do?

  • A . Recreate customizations in a new environment.
  • B . Create a customer connector to connect the pharmacies’ systems to the company’s systems.
  • C . Export the solution as a managed solution.
  • D . Write a Web API to move customizations.

Reveal Solution Hide Solution

Correct Answer: C
C

Explanation:

When you export a managed solution, it contains all the changes that have been applied for that solution into a file that you can then import into a different Dataverse environment.

Reference: https://docs.microsoft.com/en-us/powerapps/developer/data-platform/introduction-solutions

Question #41

DRAG DROP

You need to set up security to meet the requirements.

How should you configure security? To answer, drag the appropriate security mechanisms to the correct users. Each security mechanism 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.

Reveal Solution Hide Solution

Correct Answer:

Explanation:

Box 1: Field level security

Only supervisors must be able to view phone numbers in the Accounts form.

You use field security tables to apply field-level security, which restricts field access to specified users and teams. The scope of field-level security is global, which means that it applies to all records within the organization, regardless of the business unit hierarchical level to which the record or the user belongs. Field security works in all Microsoft Dataverse clients, including the Web client, Dynamics 365 for Outlook, and Dynamics. It applies to all components, such as the Dataverse web services, reports, search, offline, filtered views, auditing, and duplicate detection.

Box 2: Team Security

Sales users must only have access to their own records.

Owner team: An owner team owns records and has security roles assigned to the team. A user’s privileges can come from their individual security roles, those of the teams that they’re part of or the ones they inherit. A team has full access rights on the records that the team owns. Team members are added manually to the owner team.

Box 3: Environment security

Developers must be able to create new apps for all users.

Environment maker: 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.

Reference:

https://docs.microsoft.com/en-us/powerapps/developer/data-platform/field-security-entities

https://docs.microsoft.com/en-us/power-platform/admin/database-security

https://docs.microsoft.com/en-us/power-platform/admin/database-security

https://docs.microsoft.com/en-us/power-platform/admin/manage-teams – types-of-teams

https://docs.microsoft.com/en-us/power-platform/admin/manage-teams#types-of-teams


Question #42

You need to configure the trigger for the priority field in the Account entity.

Which expression should you use?

  • A . DIFFINWEEKS(now,1)
  • B . SUBTRACTDAYS(10, Now())
  • C . ADDWEEKS(1, CreatedOn)
  • D . DIFFINDAYS(Createdon, now())
  • E . ADDDAYS(10, CreatedOn)

Reveal Solution Hide Solution

Correct Answer: C
C

Explanation:

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=entity-framework-4.3.1

Question #43

You need to create the model driven app for accounts designated as referrals.

What should you add to the app?

  • A . Workflow
  • B . Subgrid
  • C . Business rule
  • D . Flow
  • E . Chart

Reveal Solution Hide Solution

Correct Answer: C
C

Explanation:

When the account is entered into the system, extra fields must appear if the referral customer box is selected. If the box is not selected, the extra fields must not appear.

Note: By combining conditions and actions, you can do any of the following with business rules:

✑ Set column values

✑ Clear column values

✑ Set column requirement levels

✑ Show or hide columns

✑ Enable or disable columns

✑ Validate data and show error messages

✑ Create business recommendations based on business intelligence.

Reference: https://docs.microsoft.com/en-us/powerapps/maker/data-platform/data-platform-create-business-rule

Question #44

You need to create the customer mobile app.

Which type of function expression should you use?

  • A . Filter
  • B . Find
  • C . LookUp

Reveal Solution Hide Solution

Correct Answer: C
C

Explanation:

The LookUp function finds the first record in a table that satisfies a formula. Use LookUp to find a single record that matches one or more criteria.

Reference: https://docs.microsoft.com/en-us/powerapps/maker/canvas-apps/functions/function-filter-lookup

Question #45

HOTSPOT

You need to synchronize pharmacy names and ensure that Dynamics 365 Sales data propagates correctly to the Cerner system.

What should you do? To answer, select the appropriate options in the answer area. NOTE: Each correct selection is worth one point.

Reveal Solution Hide Solution

Correct Answer:

Explanation:

Box 1: Use a Data Integration template in Power Apps.

Ensure that the names of the pharmacies are synced between the accounting and the customer management systems.

Note: The Data Integrator (for Admins) is a point-to-point integration service used to integrate data into Dataverse. It supports integrating data between Finance and Operations apps and Dataverse. It also supports integrating data into Finance and Operations apps and Dynamics 365 Sales.

The Data Integrator (for Admins) consists of the Data Integration platform, out-of-the-box templates provided by our application teams (for example, Finance and Operations apps and Dynamics 365 Sales) and custom templates created by our customers and partners.

Box 2: Create a workflow in Dynamics 365 Sales.

Account numbers should be entered automatically into the pharmaceutical system that is in a Cerner database and kept in sync.

Note: Start When: Use the options in this section to specify when a workflow should start automatically. You can configure a real-time workflow to be run before certain events. This is a very powerful capability because the workflow can stop the action before it occurs.

The options are:

✑ Record is created

✑ Record status changes

✑ Record is assigned

✑ Record fields change

✑ Record is deleted

Reference: https://docs.microsoft.com/en-us/power-platform/admin/data-integrator


Question #46

Topic 4, Proseware, Inc

Background

Proseware, Inc. is an industry leading software company with several thousand employees. The company has had some trouble recruiting talented employees. Top-level candidates interview with the company but go on to work for competitors.

Feedback from candidates show that some offers were not accepted because the interview scheduling process was unpleasant. The company does not have a system to keep track of the candidates that were not selected.

Current environment

The recruiting process starts when an individual applies for a position on the company website. The individual may have found the position on their own, they may have been officially referred by an employee, or in some cases were contacted directly by a hiring manager and encouraged to apply. Recruiters schedule an interview with a hiring manager and interviews with two senior team members. Each interview results in feedback about the candidate and a recommendation whether to hire or not.

The recruiting team manages all information by using a model-driven application.

The company has the following Microsoft Dataverse tables and columns:

• JobPosting

o Hiring Manager – lookup to SystemUser

o Recruiter Assigned – lookup to SystemUser

• Contact (Job Applicant) o Contact identifier

o First name o Last name

o Time-Zone Offset

o Person of Interest – Yes/No (default)

• Application proapplication

o Contact identifier, Contact – lookup to Contact o Job Posting – lookup to JobPosting

o pro_recruiterassignedid

• Interview

o Application – lookup to Application o Job Posting – lookup to JobPosting o Recommend – Choice (Yes (0), No (1), and null (default) are the available values) o Person of Interest – Yes/No, No is the de’aul: value

• Referral

o Contact – lookup to Contact o Referrer – lookup to SystemUser o Job Posting – lookup to JobPosting

• SystemUser

o Manger – lookup to SystemUser o Time-Zone Offset

• Recruiter

o Recruiter identifier o Recruiter name

Applications

There may be multiple applications associated with each job posting. Applications are linked to an employee record if an employee referred the applicant for a position. The same individual can be an applicant for multiple job postings.

Interviews

Each interview is performed by an employee and is related to a single application.

The interview scheduling process may force potential candidates to accept interviews at unusual times with the senior team members due to time-zone differences.

Interview scheduling

The system must provide recruiters with a list of team members and their time-zone information.

You must create a Microsoft Power Apps Component Framework (PCF) control for the Job Application form to display a list of senior team members who report directly to a hiring manager.

• The control must display the current time in each team members local time.

• The control must be bound so that it minimizes the amount of code that must be written.

• You must display the list of team members and sort the list to show team members who reside in time zones closest to the applicant’s time zone first.

You must develop a second PCF control that displays the time-zone name and current time on the Job Application form. You must display the data in the candidate’s local time.

Historical information tracking

You must create a process to identify individuals as a person of interest that the company should consider hiring. You must assign each individual a score based on their past interactions.

• You must be able to determine the following information about a candidate:

o The number of interviews in the past two years and whether team members provided recommendations

o The number of hiring manager referrals and employee referrals in the past two years

o Whether the individual has any of the 12 designations or certifications that the company considers significant

• Only a single referral can be made per job application. The system must be able to support multiple referrals for a candidate.

• The system must track referrals even if an application is not completed.

Historical information scoring

The automated process must run weekly to assess all candidates. The process must also run automatically when historical information is updated. You must be able to perform scoring by selecting a command button on the contact form.

• This new command button must only be visible to employees who belong to a security role assigned named Recruiter. The command button must not be visible to anyone unless the contact form is in Update mode.

• A person of interest is defined as having a score of 15 or more based on the following historical information criteria:

o Each interview with a recommendation adds two to the score.

o Each interview without a recommendation subtracts two from the score.

o Each employee or manager referral adds one to the score.

o Each designation or certification adds one to the score.

• All scoring elements must be recalculated when changes occur. You must assign the score to the Person of Interest field.

• Values representing totals or scores must be stored in their own numeric fields.

• Plug-ins must be used to keep the Person of Interest field on active interview records associated with the Contact.

• Plug-ins registered on the update of the Person of Interest field must send an email notification when the candidate named in the email is a person of interest. Recruiters must receive the message when the field is updated on the Contact record.

• Interviewers must get an email notification when the Person of Interest field on the interview record is successfully updated.

Design guidelines

The following design guidelines must be followed:

• Schema changes must be made using the method requiring the least amount of storage to meet the requirement.

• Out-of-the-box functionality must be used when possible.

• Any code required to calculate scores must be able to be run from a single point.

• Email notifications need to be kept to a minimum.

Issues

• Recruiters report that the command button to score a candidate is not working. You debug the code and observe that the context input parameter is null.

• The system does not support associating designations and certifications with candidates.

• The value for the field used by the PCF control to display local time is saved to Microsoft Dataverse each time an active application record is opened.

• Interviewers report that they do not receive email notifications when interview records are created for an existing person of interest.

HOTSPOT

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.

Reveal Solution Hide Solution

Correct Answer:


Question #47

You need to resolve the issue with the new command button.

What should you do?

  • A . Pass the value PrimaryControl to the function in the action definition.
  • B . Pass ExecutionContext To The function in the action definition.
  • C . Pass the value SclcctcdControl to the function in the action definition.
  • D . Select the Pass execution context as first parameter option on the event registration form.

Reveal Solution Hide Solution

Correct Answer: D
Question #48

You need to prevent the field used by the PCF control from updating the record.

What are two possible ways to achieve the goal? Each correct answer presents a complete solution. NOTE: Each correct selection is worth one point.

  • A . Disable existing event handlers on the field.
  • B . Call the setsubnitMode(‘never’) function on the field.
  • C . Create a business rule to clear the field value.
  • D . Make the field read-only.

Reveal Solution Hide Solution

Correct Answer: B, D
Question #49

You need to determine the cause for the issue reported by the interviewers.

What is the root cause of the issue?

  • A . The plug-in used to synchronize the Person of Interest field from Contact to Interview was not triggered.
  • B . There was an error in the event pipeline and the entire transaction was rolled back.
  • C . There is no plug-in registered to run when an interview record is created.

Reveal Solution Hide Solution

Correct Answer: C
Question #50

You need to configure the PCF control to display team members for interview scheduling.

Which two inputs should you use? Each correct answer presents part of the solution. NOTE: Each correct selection is worth one point.

  • A . identifier for the job candidate
  • B . identifier for the job posting
  • C . time-zone offset for the hiring manager
  • D . time-zone offset for the job candidate
  • E . identifier for the hiring manager

Reveal Solution Hide Solution

Correct Answer: A, D

Question #51

HOTSPOT

You develop the following code for the plug-in that sends email notifications to recruiters.

For each of the following statements, select Yes f the statement is true. Otherwise, select No NOTE: Each correct select in worth one point.

Reveal Solution Hide Solution

Correct Answer:


Question #52

HOTSPOT

You create the following Fetch XML query to determine the number of interviews where there are no recommendations for an applicant.

For each of the following statements, select yes if the statements is true, Otherwise select No. NOTE: Each correct selectin is worth one pint.

Reveal Solution Hide Solution

Correct Answer:


Question #53

Topic 5, Northwind Traders

Case study

Background

Northwind Traders uses Microsoft Dynamics 365 Sales to manage its sales process. To better understand its customers, Northwind Traders invests in a team of researchers who gather data from multiple sources. The company stores the data it collects in a Microsoft Azure SQL Database. The company plans to use the data to enrich account records and make the sales team more effective.

Environment

• The company has three Microsoft Power Platform environments with Dynamics 365 Sales installed. The environments are named development, test, and production.

• Each environment has an application user that can be used for integrations.

• The company must use solutions to perform all customization and configuration deployment.

Data

• Researchers are responsible for creating account records.

• Researchers have permissions on the Account table to create records, read all records, and update records they own.

• A synchronous plug-in runs when an account record is created and could reassign the record to a different user.

• Users must access data as themselves to enforce security and audit changes.

• A column named new_dataid is added to the Account table. The column uniquely identifies which data it should receive.

• Researchers have researched only the top 20 percent of account records.

Web API

• The company creates an Azure Function to run a RESTful .NET Web API.

o Data can be retrieved by placing a GET request to the URL https://dataservice-tENVIRONMENTNAIvlEl.azurewebsites.net/enrich/IDATAID].

■ [ENVIRONMENTNAME] is the name of the Microsoft Power Platform environment that requests the data.

■ [DATAID] is the new.dataid column in the Account table.

o The Web API response will return a 200 response plus data if the Datald is found. Otherwise, a 404 response is returned.

• Developers plan to create a custom connector from the Web API to make it accessible from Microsoft Power Platform.

Custom connector

• The Web API definition used to create The custom connector must be generated based on a low-code technology.

• The URL used by the custom connector must incorporate the current environment name without hardcoding values.

• Errors generated by the custom connector must not cause downstream processes to fail.

• Text descriptions and field placeholder text that describe the use of the custom connector must appear for non-developers.

Process

• All account records must be updated with data from the Web API once automatically.

• Only account records that contain a Datald should be updated by the Web API.

• Researchers must create Power Automate flows to specify data analysis priority.

• The researchers require a process that repurposes a set of identical steps of parameterized Microsoft Dataverse queries from a Power Automate flow for use in other flows that have different parameters. The researchers want to avoid recreating the steps manually each time they create a flow to save time and avoid errors.

Issues

• A tester attempts to connect to the production instance of the Web API with a Datald that should return data. The tester receives an error stating that the remote name could not be resolved.

• A missing component causes an error to occur when importing the solution that contains the Power Automate flow to update account records in a test environment.

You need to ensure data returned from the Web API corresponds to the correct environment.

What should you use?

  • A . system settings
  • B . plug-in secure configurations
  • C . records in a new configuration table
  • D . environment variables

Reveal Solution Hide Solution

Correct Answer: D
Question #54

DRAG DROP

You need to configure the custom connector to incorporate the environment name and Datald in the Web API URL

Which four 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. NOTE: More than one order of answer choices is correct. You will receive credit for any of the correct orders you select.

Reveal Solution Hide Solution

Correct Answer:


Question #55

HOTSPOT

You need to configure the Web API and create the custom connector.

Which action should you perform for each step? To answer, select the appropriate options in the answer area. NOTE: Each correct selection is worth one point.

Reveal Solution Hide Solution

Correct Answer:


Question #56

You need to choose a technology to access the Web API.

Which technology should you select?

  • A . Canvas app that uses the custom connector
  • B . Plug-in that contacts the Web API
  • C . Power Automate flow that uses the custom connector
  • D . Webhook that contacts the Web API

Reveal Solution Hide Solution

Correct Answer: C
Question #57

DRAG DROP

You need to configure a Power Automate flow to update account records by using the response from the Web API.

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.

Reveal Solution Hide Solution

Correct Answer:


Question #58

You need to configure the row filter on the Dataverse trigger.

Which filter should you use?

  • A . not contains(new_dataid, ")
  • B . new_dataid eq null
  • C . Dataldnenull
  • D . new dataid ne null

Reveal Solution Hide Solution

Correct Answer: D
Question #59

HOTSPOT

You need to configure a Dataverse trigger and action in a Power Automate flow so researchers can update account records with data from the Web API even if they do not have edit privileges on the record.

What should you configure for each trigger and action requirement? To answer select the appropriate options in the answer area. NOTE: Each correct selection is worth one point

Reveal Solution Hide Solution

Correct Answer:


Question #60

You need to determine which component to add to the solution to resolve the account records import error.

Which component should you add?

  • A . connection
  • B . service endpoint
  • C . custom connector
  • D . Accoun table

Reveal Solution Hide Solution

Correct Answer: B

Question #61

HOTSPOT

You need to configure security for the Azure Function and custom connector.

Which security tool should you configure for each item? To answer, select the appropriate options in the answer area. NOTE: Each correct selection is worth one point.

Reveal Solution Hide Solution

Correct Answer:


Question #62

You need to determine the cause of the 404 error when connecting to the production instance of the Web API.

What do you identify?

  • A . The web service lacks data for the record.
  • B . An authentication error occurred.
  • C . The request timed-out.
  • D . The host name in the URL is missing a valid value.

Reveal Solution Hide Solution

Correct Answer: B
Question #63

DRAG DROP

You need to implement a reusable solution to encapsulate the parameterized Dataverse queries.

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.

Reveal Solution Hide Solution

Correct Answer:


Question #64

Topic 6, Misc. Questions

You are building a custom application in Azure to process resumes for the HR department.

The app must monitor submissions of resumes.

You need to parse the resumes and save contact and skills information into the Common Data Service.

Which mechanism should you use?

  • A . Power Automate
  • B . Common Data Service plug-in
  • C . Web API
  • D . Custom workflow activity

Reveal Solution Hide Solution

Correct Answer: A
A

Explanation:

Improve operational efficiency with a unified view of business data by creating flows that use Dataverse (Common Data Service has been renamed to Microsoft Dataverse as of November 2020).

For example, you can use Dataverse within Power Automate in these key ways:

Create a flow to import data, export data, or take action (such as sending a notification) when data changes.

Instead of creating an approval loop through email, create a flow that stores approval state in an entity, and then build a custom app in which users can approve or reject items.

Reference: https://docs.microsoft.com/en-us/power-automate/common-data-model-intro

Question #64

Topic 6, Misc. Questions

You are building a custom application in Azure to process resumes for the HR department.

The app must monitor submissions of resumes.

You need to parse the resumes and save contact and skills information into the Common Data Service.

Which mechanism should you use?

  • A . Power Automate
  • B . Common Data Service plug-in
  • C . Web API
  • D . Custom workflow activity

Reveal Solution Hide Solution

Correct Answer: A
A

Explanation:

Improve operational efficiency with a unified view of business data by creating flows that use Dataverse (Common Data Service has been renamed to Microsoft Dataverse as of November 2020).

For example, you can use Dataverse within Power Automate in these key ways:

Create a flow to import data, export data, or take action (such as sending a notification) when data changes.

Instead of creating an approval loop through email, create a flow that stores approval state in an entity, and then build a custom app in which users can approve or reject items.

Reference: https://docs.microsoft.com/en-us/power-automate/common-data-model-intro

Question #66

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?

  • A . Add the maintenance history app to the Field Service Mobile app.
  • B . Add the manager Power BI dashboard to the Field Service mobile app.
  • C . Create a new maintenance canvas app from within the Power BI management dashboard.
  • D . Add the maintenance history app to the Power BI dashboard.

Reveal Solution Hide Solution

Correct Answer: D
D

Explanation:

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 #67

HOTSPOT

You work for a staffing company that helps employees fill temporary jobs. Available temporary jobs are categorized and listed on a secure area of the company’s website.

The company wants to eliminate manual work that relates to job and candidate management. The company plans to invite employers with available jobs and job candidates to view jobs by sending personalized invitations.

The company identifies the following requirements:

✑ Human resources team members from the staffing company must be able to access the jobs listing and post available positions.

✑ Employers seeking temporary employees must also be able to access the jobs listing and post available positions.

✑ Approved job candidates must be notified about new positions for which they are qualified.

✑ Approved job candidate must have an option to accept a job assignment directly from a notification.

You need to perform a gap analysis against the features and capabilities of the Power Platform.

Which features should you implement? To answer, select the appropriate options in the

answer area. NOTE: Each correct selection is worth one point.

Reveal Solution Hide Solution

Correct Answer:

Explanation:

Box 1: Custom self-service portal for both employers and job candidates

If you select an environment that contains customer engagement, you can create the following portals:

✑ Customer self-service portal: A customer self-service portal enables customers to access self-service knowledge, support resources, view the progress of their cases, and provide feedback.

✑ Partner portal: A partner portal allows every organization with resellers, distributors, suppliers, or partners to have real-time access to every stage of shared activities.

✑ Employee self-service portal: An employee self-service portal creates an efficient and well-informed workforce by streamlining common tasks and empowering every employee with a definitive source of knowledge.

Box 2: Model-driven app with push notifications

Compared to canvas apps, model-driven apps in PowerApps are based on underlying data

― specifically, the data stored in Common Data Service (CDS). Box 3: Webform with target set to the job custom entity

Box 4: Configure a value for the Execute Workflow on Redeeming Contact option only.

Execute Workflow on Redeeming Contact: A workflow process to be executed when the invite is redeemed. The workflow will be passed the redeeming contact as the primary entity.

Box 5: Configure the value for the Assigned to Account option only.

Assign to Account: An account record to be associated as the redeeming contact’s parent customer when the invite is redeemed.

Reference:

https://docs.microsoft.com/en-us/powerapps/maker/portals/portal-templates

https://global.hitachi-solutions.com/blog/canvas-vs-model-driven-apps

https://docs.microsoft.com/en-us/powerapps/maker/portals/configure/invite-contacts#invitation-attributes


Question #68

HOTSPOT

You are synchronizing company data from a SQL Server-based .NET application into a Common Data Service (CDS) environment.

The data is entered in both the SQL Server and CDS systems.

You have a program that includes the following code:

For each of the following statements, select Yes if the statement is true. Otherwise, select No. NOTE: Each correct selection is worth one point.

Reveal Solution Hide Solution

Correct Answer:

Explanation:

Box 1: No.

An alternate key is needed, not a new field for the record identifier.

Box 2: Yes

The specified key attributes are not a defined key for the account entity.

Name: EntityKeyNotDefined

Message: The specified key attributes are not a defined key for the {0} entity

Box 3: Yes

One way to create an entity is by using the UpsertRequest class. An upsert will create a new entity when there is no existing record that has the unique identifiers included in the entity passed with the request.

Box 4: No

Reference:

https://docs.microsoft.com/en-us/powerapps/developer/common-data-service/org-service/web-service-error-codes

https://docs.microsoft.com/en-us/powerapps/developer/common-data-service/org-service/entity-operations-update-delete#use-upsert


Question #69

DRAG DROP

A company is creating a new system based on the Common Data Service (CDS).

You need to select the CDS 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 needs to drag the split bar between panes or scroll to view content. NOTE: Each correct selection is worth one point.

Reveal Solution Hide Solution

Correct Answer:

Explanation:


Question #69

DRAG DROP

A company is creating a new system based on the Common Data Service (CDS).

You need to select the CDS 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 needs to drag the split bar between panes or scroll to view content. NOTE: Each correct selection is worth one point.

Reveal Solution Hide Solution

Correct Answer:

Explanation:


Question #69

DRAG DROP

A company is creating a new system based on the Common Data Service (CDS).

You need to select the CDS 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 needs to drag the split bar between panes or scroll to view content. NOTE: Each correct selection is worth one point.

Reveal Solution Hide Solution

Correct Answer:

Explanation:


Question #69

DRAG DROP

A company is creating a new system based on the Common Data Service (CDS).

You need to select the CDS 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 needs to drag the split bar between panes or scroll to view content. NOTE: Each correct selection is worth one point.

Reveal Solution Hide Solution

Correct Answer:

Explanation:


Question #73

DRAG DROP

A company implements Dynamics 365 Sales.

Only sales managers must be able to perform the approval to move high value sales on in the opportunity qualification process. A new field must be created to capture the approval.

You need to create and secure the new field.

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.

Reveal Solution Hide Solution

Correct Answer:

Explanation:

Step 1: Enable field security in the Approval field.

✑ Enable field security on one or more fields for a given entity.

✑ Associate one more existing security profiles, or create one or more new security profiles to grant the appropriate access to specific users or teams (step 2 and step 3 below).

Step 2: Create a new field security profile.

Create a new field security profile for the sales manager.

Step 3: Set the field permissions…security profile

Step 2 and step 3, example:

Configure the security profiles.

✑ Create the field security profile for sales managers.

✑ Go to Settings > Security.

✑ Click Field Security Profiles.

✑ Click New, enter a name, such as Sales Manager access contact mobile phone, and click Save.

✑ Click Users, click Add, select the users that you want to grant read access to the mobile phone number on the contact form, and then click Add.

✑ Click Field Permissions, click mobilephone, click Edit, select Yes next to Allow Read, and then click OK.

Reference: https://docs.microsoft.com/en-us/dynamics365/customerengagement/on-premises/admin/field-level-security


Question #74

HOTSPOT

A company delivers packages to businesses and consumers. A custom entity named Package captures the package details.

You need to add the following sets of fields to the entity and leverage the built-in operations of the platform:

✑ A set of fields to represent the package length, width, depth, and weight. The maximum value for any dimension is 100 centimeters.

✑ A set of fields for time-sensitive attributes to calculate the efficiency of a delivery based on when the delivery is entered in the system and the existing custom fields: Pickup time and Delivery time.

Which constructs should you use? To answer, select the appropriate options in the answer area. NOTE: Each correct selection is worth one point.

Reveal Solution Hide Solution

Correct Answer:

Explanation:

Box 1: DIFFINMINUTES (Created on, Delivery Time)

DIFFINMINUTES (date and time, date and time) returns the difference in minutes between two Date and Time columns.

Box 2: Duration

Reference: https://docs.microsoft.com/en-us/powerapps/maker/common-data-service/define-calculated-fields


Question #75

A financial services company uses the Common Data Service (CDS) to develop solutions. The company uses development and production instances.

You need to move solutions from the development instance to the production instance.

What are two possible ways to achieve this goal? Each correct answer presents a complete solution. NOTE: Each correct selection is worth one point.

  • A . In the development instance, make changes to the solutions that are deployed in the production instance, export the solutions as managed solutions, and import the managed solutions into the production instance.
  • B . In the development instance, highlight the solution you want to make changes to, select Clone a Patch, make changes, export the solution, and import the solution into the production instance.
  • C . Export all managed solutions from the development instance and import the solutions into the production instance.
  • D . In the production instance, import solutions with the same version number or higher when updating solutions.

Reveal Solution Hide Solution

Correct Answer: AB
AB

Explanation:

A: When you import a managed solution, all component changes will be brought into the environment in a published state.

B: You can apply patches to either managed or unmanaged solutions and include only changes to entities and related entity assets. Patches do not contain any non-customized system components or relationships that it dependents upon because these components already exist in the deployed-to organization. At some point in your development cycle, you can roll up all the patches into a new solution version to replace the original solution that the patches were created from.

Reference:

https://docs.microsoft.com/en-us/powerapps/maker/common-data-service/import-update-export-solutions

https://docs.microsoft.com/en-us/power-platform/alm/create-patches-simplify-solution-updates

Question #76

HOTSPOT

A company uses SharePoint for its intranet and other functions. The company has also implemented model-driven apps.

SharePoint users must be able to create contact records in the Common Data Service (CDS), without having to navigate to the model-driven apps.

You need to create a link in SharePoint to open the CDS contact from displaying data from SharePoint.

How should you complete the URL? To answer, select the appropriate options in the answer area. NOTE: Each correct selection is worth one point.

Reveal Solution Hide Solution

Correct Answer:

Explanation:

https://contoso.crm.dynamics.com/main.aspx?etn=contact&extraqs=param_1%3D&pagetype=entityrecord

Box 1: main.aspx

Example, to open the Active Contacts view.

https://myorg.crm.dynamics.com/main.aspx?etn=contact&pagetype=entitylist&viewid={00000000-0000-0000-00AA-000010001004}

Box 2: etn

Etn: The logical name of the entity. Important: Do not use the etc (entity type code) parameter that contains an integer code for the entity. This integer code varies for custom entities in different organizations.

Box 3: Extraqs

Extraqs: Optional for forms. This parameter contains encoded parameters within this parameter.

When you open a new form by using the URL address, you can include arguments in the extraqs parameter to set field values

Note: You must encode the parameters passed in the extraqs parameter. To encode the parameters, use encodeURIComponent. To use special characters like "=" or "&" in the parameter values, you must double encode (e.g. to set name to A=B&C, it would be extraqs=name%3DA%253DB%2526C).

Box 4: entityrecord

Reference:

https://docs.microsoft.com/en-us/powerapps/developer/model-driven-apps/open-forms-views-dialogs-reports-url

https://docs.microsoft.com/en-us/powerapps/developer/model-driven-apps/set-field-values-using-parameters-passed-form


Question #77

A company uses a model-driven app to record details of laboratory test.

You are asked to create a custom component that makes it easier to capture multiple values from lab test results on mobile devices.

You need to create the interface for the dataset in case the mobile devices lose connection to the network.

Which method should you use?

  • A . SaveData
  • B . updateView
  • C . init
  • D . getClient

Reveal Solution Hide Solution

Correct Answer: A
A

Explanation:

Use LoadData and SaveData for basic data storage while offline.

Note:

When building mobile apps, one of the most common scenarios app makers face is how to enable their users be productive in situations where there is limited or no connectivity at all. This has been one of the most requested features for PowerApps to allow running apps while being disconnected and to provide some support for offline data caching.

In this release of PowerApps, we are delivering the first set of improvements for app makers to achieve that by enabling:

✑ Launching the PowerApps mobile player app offline

✑ Running apps while being offline

✑ Determine when your app is online or offline or in a metered connection by using the Connection signal object.

✑ Leverage existing formulas such as LoadData and SaveData for basic data storage while offline.

Reference: https://powerapps.microsoft.com/sv-se/blog/build-offline-apps-with-new-powerapps-capabilities/

Question #78

A bank uses a Common Data Service solution to manage clients.

Bank representatives perform client credit checks while the client is present. Credit checks may take up to five minutes to complete.

Bank policy dictates that the bank representative’s app must stay blocked until credit checks are complete.

You need to display a model-driven app while credit checks run to ask the bank representative and client to wait for the credit check to complete.

Which function should you use?

  • A . Xrm.Navigation.openWebResource("prefix.myPoliteMessage.html")
  • B . Xrm.Navigation.openAlertDialog(myPoliteMessage)
  • C . Xrm.Utility.openWebResource("prefix_myPoliteMessage.html")
  • D . Xrm.Utility.showProgressIndicator(myPoliteMessage)

Reveal Solution Hide Solution

Correct Answer: D
D

Explanation:

showProgressIndicator displays a progress dialog with the specified message.

Any subsequent call to this method will update the displayed message in the existing progress dialog with the message specified in the latest method call.

The progress dialog blocks the UI until it is closed using the closeProgressIndicator method. So, you must use this method with caution.

Reference: https://docs.microsoft.com/en-us/powerapps/developer/model-driven-apps/clientapi/reference/xrm-utility/showprogressindicator

Question #79

DRAG DROP

You are creating a model-driven app.

Users need to see only the entities in the app navigation that are relevant to their role and their method of accessing the app.

You need to restrict entities on the sub-areas in the SiteMap.

Which properties should you use? To answer, drag the appropriate properties to the correct requirements. Each property 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.

Reveal Solution Hide Solution

Correct Answer:

Explanation:

Box 1: Privileges

Privileges: This defines whether a subarea is displayed based on privileges available in any security roles that are assigned to the user.

Box 2: SKU

SKUs: Select the versions of Dynamics 365 that display this subarea.

Box 3: Client

Client: Select the type of client that displays this subarea.

Incorrect Answers:

Offline Availability: Select this check box to make this subarea available to users when they are offline in Dynamics 365 for Outlook.

Reference: https://docs.microsoft.com/en-us/powerapps/maker/model-driven-apps/create-site-map-app


Question #80

HOTSPOT

You are troubleshooting Power Apps solutions.

You need to determine the cause for the identified issues.

What is the root cause for each issue? To answer, select the appropriate options in the answer area. NOTE: Each correct selection is worth one point.

Reveal Solution Hide Solution

Correct Answer:

Explanation:

Box 1: A canvas app in the first solution has errors.

Failures that occur during background processing of the analysis will fail with ‘Couldn’t be completed’ status and return an error message in the Power Apps portal as well as send email notification to the requestor.

Selecting the portal notification will link to this page of common issues for further troubleshooting. If one of the provided common issues does not resolve the problem, a reference number is also returned. Provide this reference number to Microsoft Support for further investigation.

Box 2: The code uses the following rule: web-use-strict-mode web-use-strict-mode is able to throw a SyntaxError before the script is executing.

Example:

The reason is JavaScript lets you compare different variable types but this can have unexpected results, so by using the strict === it compares the same type and won’t have unexpected results this gets a warning

entity.field == "Line1"

Incorrect Answers:

web-avoid-eval: The eval () function evaluates JavaScript code represented as a string.

web-avoid-modals: Avoid using modal dialogs.

web-remove-debug-script: Avoid including debug script in non-development environments.

Reference: https://docs.microsoft.com/en-us/powerapps/maker/common-data-service/common-issues-resolutions-solution-checker


Question #81

You create a Power Apps app that integrates with Dynamics 365 Customer Service.

You update the app and run solution checker on the original solution. You receive an error stating solution checker cannot export the solution.

You need to determine the primary cause for the issue.

What is the primary cause?

  • A . The original solution is locked because there is a dependent patch.
  • B . The solution was not exported before running solution checker.
  • C . The environment is an Administrator mode.
  • D . Solution checker cannot check default solutions.

Reveal Solution Hide Solution

Correct Answer: A
A

Explanation:

Solution checker fails to export patched solutions.

If a solution has had a patch applied, Solution Checker will fail to export the solution for analysis. When a solution has had a patch applied, the original solution becomes locked and it can’t be changed or exported as long as there are dependent patches that exist in the organization that identify the solution as the parent solution.

To resolve this issue, clone the solution so that all patches related to the solution are rolled into the newly created solution. This unlocks the solution and allows the solution to be exported from the system.

Reference: https://docs.microsoft.com/en-us/powerapps/maker/common-data-service/common-issues-resolutionssolution-checker#solution-checker-fails-to-export-solutions-with-model-driven-app-components

Question #82

HOTSPOT

You are creating a model-driven app to track the time that employees spend on individual projects.

You need to configure the app according to the company’s requirements.

Which components should you configure? To answer, select the appropriate options in the answer area. NOTE: Each correct selection is worth one point.

Reveal Solution Hide Solution

Correct Answer:

Explanation:

Box 1: View

Box 2: Quick Create

With quick create forms, your app can have a streamlined data entry experience with full support for logic defined by form scripts and business rules.

By default only these system tables have quick create forms: account, campaign response, 1case, competitor, contact, lead, opportunity.

Incorrect Answers:

Quick View

A quick view form can be added to another form as a quick view control. It provides a template to view information about a related table row within a form for another table row. This means your app users do not need to navigate to a different row to see the information needed to do their work.

Reference:

https://docs.microsoft.com/en-us/powerapps/developer/model-driven-apps/customize-entity-views

https://docs.microsoft.com/en-us/powerapps/maker/model-driven-apps/create-edit-quick-create-forms


Question #83

You fix a bug in the code of your application, which is currently on version 10.0.2.1.

You need to publish an updated version of the solution.

Which version identifier should you use?

  • A . 10.0.3.1
  • B . 10.0.2.2
  • C . 10.1.0.2
  • D . 11.0.0

Reveal Solution Hide Solution

Correct Answer: A
A

Explanation:

The version number are <major>.<minor>.<build>.<revision>.

When we create patches in Dynamics 365, the system will automatically increment the build version (you can overwrite the chosen number when you create the patch). For example, if our solution starts at 1.0.0.0, we export it to become 1.0.0.1. We then create a patch, and the version of the patch is 1.0.1.1. If we export it now, it might become 1.0.1.2. In all cases, the build or version number has been incremented. Patches require the build or version number to increment, but not the major or minor version.

Reference: https://carldesouza.com/how-solution-version-numbers-work-in-the-microsoft-power-platform/

Question #84

HOTSPOT

Fabrikam, Inc, has two divisions as shown in the Business Unit exhibit. (Click the Business Unit tab.)

✑ Fabrikam Residences rents units short term to clients.

✑ Fabrikam Property Management deals with the maintenance of the units and manages the contractors who perform the maintenance.

✑ Clients and contractors are both stored in the Contact entity.

The manager of the Property Management business unit is a member of a Fabrikam business unit, which has the root security role as shown in the Security Role exhibit. (Click the Security Role tab.)

The manager cannot see the contact record shown in the Contact exhibit. (Click the Contact tab.)

You need to ensure that the manager can view contact records owned by someone in the Residences business unit.

For each of the following statements, select Yes if the statement achieves the goal. Otherwise, select No.

Reveal Solution Hide Solution

Correct Answer:

Explanation:

Box 1: Yes

Change it to Direct User/Basic access level and Team privileges. This creates a security role with team member’s privilege inheritance.

Note: For roles assigned to teams with Basic-level access user privilege, the role’s inheritance configuration also comes into play. If the team has the Member’s privilege inheritance set to Team privileges only, then the user will only be able make use of that privilege for records owned by the team.¨

Box 2: No

The manager of the Property Management business unit is already a member of a Fabrikam business unit, which has the root security role

Box 3: Yes

Reference: https://docs.microsoft.com/en-us/power-platform/admin/security-roles-privileges


Question #85

HOTSPOT

A company has a development environment and a production environment. The production environment has several third-party managed and unmanaged solutions that made changes to the Contact main form.

You create a new solution in the development environment. You add the Contact entity and the Contact main form to the solution. You create a custom field on the Contact entity.

What happens when you perform these actions and import the solution into the production environment? To answer, select the appropriate options in the answer area. NOTE: Each correct selection is worth one point.

Reveal Solution Hide Solution

Correct Answer:

Explanation:

Box 1: The field is appended to the end of the existing section.

When you add new elements to a form that is to be merged, we recommend that you include your new elements within new container elements (tabs or sections). Additions to any container will be appended to the end of the container. For example, fields added to a section will be positioned at the end of the section.

Box 2: The field is added in a new section.

Box 3: The field is inserted in the middle of the existing section

Reference: https://docs.microsoft.com/en-us/previous-versions/dynamicscrm-2016/developers-guide/gg309329(v=crm.8)


Question #86

An organization uses Dynamics 365 Sales. The organization has accounting and customer service departments.

You must restrict users in customer service from being able to change the value of the balance field on the Contact records. The accounting team must be the only team able to edit this field. You need to create the appropriate solution without any customizations.

What should you do first?

  • A . Enable field security for the balance field and grant the customer service team read and update permissions.
  • B . Create a customer service form and role and make the balance field read-only.
  • C . Enable field security for the balance field and grant the accounting team read permissions.
  • D . Enable field security for the balance field and grant the customer service team read permissions.

Reveal Solution Hide Solution

Correct Answer: C
C

Explanation:

In Dynamics 365 Customer Engagement (on-premises), you use field-level security to restrict access to high business impact fields to specific users and teams. For example, you use this to enable only certain users to read or update the credit score for a customer.

Reference:

https://docs.microsoft.com/en-us/dynamics365/customerengagement/on-

premises/developer/security-dev/use-field-security-control-access-field-values

Question #87

HOTSPOT

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.

Reveal Solution Hide Solution

Correct Answer:

Explanation:

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


Question #88

A travel company plans to track the address of places their clients visit in an entity named Destination. Client

information is captured as contact records. Client records include links to the places that clients visit.

The company must be able to link multiple rating records to the new address record.

You find a custom Rating entity that is incomplete.

You need to expand the Rating entity to include contact, address, and rating information in one place.

Which three actions should you perform? Each correct answer presents part of the solution. NOTE: Each correct selection is worth one point.

  • A . Create a 1:N relationship between the Contact system entity and the Address system entity named Destination.
  • B . Create a mapping for the Contact C Rating relationship.
  • C . Create a 1:N relationship between the Address system entity and the Rating entity.
  • D . Create a 1:N relationship between the Contact system entity and the Rating entity.
  • E . Create a mapping for the Destination C Rating relationship.
  • F . Create a 1:N relationship between the Destination entity and the Rating entity.

Reveal Solution Hide Solution

Correct Answer: ACE
ACE

Explanation:

Reference: https://docs.microsoft.com/en-us/powerapps/maker/common-data-service/map-entity-fields

Question #89

HOTSPOT

A company uses Dynamics 365 Sales and the Microsoft Online Services portal.

The multi-select OptionSet field data type is not supported in the portal.

You need to copy the selected field value to the text field.

How should you configure the Organization service request? To answer, select the appropriate options in the answer area. NOTE: Each correct selection is worth one point.

Reveal Solution Hide Solution

Correct Answer:

Explanation:

Box 1: Yes

If you are creating an attribute editor you will need to retrieve entity data that has been saved but not published.

For other scenarios you will want to only retrieve published metadata.

✑ Set this value to true to include unpublished changes, as it would look if you called publish.

✑ Set this value to false to include only the currently published changes, ignoring the changes that haven’t yet been published.

Box 2: AttributeMetadata

AttributeMetadata class is returned in the RetrieveAttributeResponse.

Reference:

https://docs.microsoft.com/en-us/dotnet/api/microsoft.xrm.sdk.messages.retrieveattributerequest.retrieveasifpublished?view=dynamics-general-ce-9

https://docs.microsoft.com/en-us/dotnet/api/microsoft.xrm.sdk.metadata.attributemetadata?view=dynamics-general-ce-9


Question #90

You have a Common Data Service entity and a model-driven app. The model-driven app integrates with an external system.

You plan to run business logic each time the model-driven app creates a record. Running business logic must not negatively affect model-driven app users. You need to implement the business logic.

What should you use?

  • A . Synchronous plug-in registered in the PreOperation stage
  • B . Synchronous workflow
  • C . Asynchronous plug-in registered in the PostOperation stage

Reveal Solution Hide Solution

Correct Answer: C
C

Explanation:

The asynchronous service executes long-running operations independent of the main Microsoft Dataverse core operation. This results in improved overall system performance and improved scalability.

Reference: https://docs.microsoft.com/en-us/powerapps/developer/common-data-service/asynchronous-

service

Question #91

HOTSPOT

A company is preparing to go live with their Dynamics 365Sales solution, but first they need to migrate data from a legacy system. The company is migrating accounts in batches of 1,000.

When the data is saved to Dynamics 365 Sales, the IDs for the new accounts must be output to a log file.

You have the following code:

For each of the following statements, select Yes if the statement is true. Otherwise, select No.

Reveal Solution Hide Solution

Correct Answer:

Explanation:

Box 1: No

Box 2: Yes

ContinueOnError: When true, continue processing the next request in the collection even if a fault has been returned from processing the current request in the collection. When false, do not continue processing the next request.

ReturnResponses: When true, return responses from each message request processed.

When false, do not return responses.

When false, the Responses collection will not be empty if errors are returned. If errors are returned, there will be one response item in the collection for each processed request that returned a fault and Fault will be set to the actual fault that occurred.

Box 3: No

Box 4: Yes

For example, in a request collection that contains six requests where the third and fifth request return faults, the following table indicates what the Responses collection would contain.

ContinueOnError=true, ReturnResponses=false: 2 response items: 2 have Fault set to a value.

Reference: https://docs.microsoft.com/en-us/powerapps/developer/common-data-service/org-service/execute-multiple-requests


Question #92

DRAG DROP

You are creating a business process flow for an organization’s Request for Quote process.

You need to ensure that the business process flow meets the company’s requirements.

Which components should you use? To answer, drag the appropriate components to the correct requirements. Each component may be used once, more than once, or not at all. You may need to drag the split bar between panes to scroll to view content. Select the appropriate options in the answer area. NOTE: Each correct selection is worth one point.

Reveal Solution Hide Solution

Correct Answer:

Explanation:

Box 1: Step

Each step represents a field where data can be entered.

Stages tell you where you are in the process, while steps are action items that lead to a desired outcome.

Box 2: Branching condition

You can enhance a business process flow with branching. If you have the create permissions on business process flows, you’ll be able create business process flow with multiple branches by using the If-Else logic.

Box 3: Stage

Each stage contains a group of steps.

Incorrect Answers:

You can use custom controls to add rich visualizations (such as sliders, radial knobs, the LinkedIn control, and more) to business process flows steps and deliver engaging experiences to those who use your business process.

Reference:

https://docs.microsoft.com/en-us/power-automate/business-process-flows-overview

https://docs.microsoft.com/en-us/power-automate/enhance-business-process-flows-branching


Question #93

HOTSPOT

A university manages grant applications using a model-driven app.

Users report that the message on the Grant Application screen is outdated.

The screen shows the following:

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.

Reveal Solution Hide Solution

Correct Answer:

Explanation:

Reference: https://www.loganconsulting.com/blog/how-use-power-automate-trigger-workflows-microsoft-dynamics-crm/


Question #94

A manufacturing company uses a Common Data Service (CDS) environment to manage their parts inventory across two warehouses modeled as business units and named WH1 and WH2.

Data from the two warehouses is processed separately for each part that has its inventory quantities updates.

The company must automate this process, pushing inventory updates from orders submitted to the warehouses.

You need to build the automation using Power Automate flows against the CDS database. You must achieve this goal by using the least amount of administrative effort.

Which flow or flows should you recommend?

  • A . Two automated flows with scope Business Unit, with triggers on Create/Update/Delete on orders.
  • B . Two automated flows with scope Business Unit, with triggers on Create/Update/Delete and each flow filtering updates from each business unit.
  • C . Two scheduled flows, each querying and updating the parts included in orders from each business unit.
  • D . One scheduled flow, querying the parts included in orders in both business units.
  • E . One automated flow, querying the orders in both business units.
  • F . Two scheduled flows, each querying the orders from each business unit.
  • G . Two automated flows with scope Organization, with triggers on Create/Update/Delete and filters on WH1 and WH2.
  • H . Two automated flow with scope Business Unit, with triggers on Create/Update/Delete on orders and filters on WH1 and WH2.

Reveal Solution Hide Solution

Correct Answer: H
H

Explanation:

With the Common Data Service connector, you can create Power Automate flows that are initiated by create and update events within Dataverse. Additionally, you can perform create, update, retrieve, and delete actions on records within Dataverse.

You can use scopes to determine if your flow runs if you create a new record, if a new record is created by a user within your business unit, or if a new record is created by any user in your organization.

Reference: https://docs.microsoft.com/en-us/power-automate/connection-cds

Question #95

An organization implements Dynamics 365 Sales.

You need to trigger a business rule when the main form in saved.

What should you do?

  • A . Write a business rule to trigger on a change of ModifiedOn field.
  • B . Set the scope of the business rule to one specific form where business rule triggers.
  • C . Set the scope of the business rule to All Forms.
  • D . Set the scope of the business rule to Entity.

Reveal Solution Hide Solution

Correct Answer: D
D

Explanation:

Set scope of business rule to "Entity" instead of "All Form". This will trigger it on server side.

Reference: https://docs.microsoft.com/en-us/previous-versions/dynamicscrm-2016/developers-guide/dn481574(v=crm.8)

Question #96

A company implements Dynamics 365 Sales.

An email notification must be sent automatically to the sales manager when a business process completes.

You need to ensure that emails are sent.

What should you create on the process completed trigger?

  • A . a workflow
  • B . an action step
  • C . a data step
  • D . a Power Automate flow step

Reveal Solution Hide Solution

Correct Answer: A
A

Explanation:

When you include a workflow that you want to trigger on Stage Exit of a stage in your business process flow, and that stage is the last stage in the flow, the designer gives the impression that the workflow will be triggered when that stage is completed.

Reference: https://docs.microsoft.com/en-us/dynamics365/customerengagement/on-premises/customize/businessprocess-flows-overview

Question #97

HOTSPOT

A company has a model-driven app.

A custom button on a form calls a JavaScript function that validates form data fields and creates a web basket. The JavaScript function then displays a message to the user.

Users are located in the United States, which uses ISO Code 1033, and France, which uses ISO Code 1036.

Users in France report that the message displays in English.

You need to modify the RibbonDiffXml file to ensure that messages appear in the user’s language.

How should you complete the CommandDefinition node? To answer, select the appropriate options in the answer area. NOTE: Each correct selection is worth one point.

Reveal Solution Hide Solution

Correct Answer:

Explanation:

Box 1: CrmParameter

In addition to data values, you can retrieve client context information by using <CrmParameter>. You can use the following options as the value for the CrmParameter element: OrgName, OrgLcid, and UserLcid.

Box 2: UserLcid

userLCID is the language code of the current user.

Note: A locale is a set of user preference information related to the user’s language. The locale determines how dates, times, currencies, and numbers are formatted, how items are alphabetically sorted, and how strings are compared. The locale identifier (LCID) is a 32-bit value that uniquely defines a locale.

Reference:

https://docs.microsoft.com/en-us/dynamics365/customerengagement/on-

premises/developer/customize-dev/pass-dynamics-365-data-page-parameter-ribbon-actions


Question #98

HOTSPOT

A company has a model-driven app that captures applications from prospective students.

You are asked to create a new re-usable custom component using the Power Apps component framework (PCF).

The custom component must allow entry of a date of birth and validate that the applicant is not a minor.

You create the class AuditDatePicker in the TypeScript file Index.ts and the style sheet DatePicker.css.

You need to define the component to be available only for relevant fields and its properties when used in a form.

How should you complete the manifest? To answer, select the appropriate options in the answer area. NOTE: Each correct selection is worth one point.

Reveal Solution Hide Solution

Correct Answer:

Explanation:

Box 1: AuditDatePicker

Constructor: Constructor of the code component.

Box 2: DateandTime.DateOnly

Box 3: bound

usage: Has two properties, bound and input. Bound properties are bound only to the value of the field. Input properties are either bound to a field or allow a static value.

Reference:

https://docs.microsoft.com/en-us/powerapps/developer/component-framework/manifest-schema-reference/manifest

https://docs.microsoft.com/en-us/powerapps/developer/component-framework/implementing-controls-using-typescript


Question #99

DRAG DROP

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.

Reveal Solution Hide Solution

Correct Answer:

Explanation:

Step 1: Run pac pcf init Cnamespace ..

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 Cnamespace <specify your namespace here> Cname <put component name here> Ctemplate <component type>

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:

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

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/


Question #100

A company is creating a Power Apps portal to collaborate with vendors.

You need to implement custom functionality in the portal by using JavaScript code.

Which two portal entities can you use? Each correct answer presents a complete solution. NOTE: Each correct selection is worth one point.

  • A . Web pages
  • B . Web resources
  • C . Webforms
  • D . Entity lists

Reveal Solution Hide Solution

Correct Answer: CD
CD

Explanation:

C: The Web Form Step record contains a field named Custom JavaScript that can be used to store JavaScript code to allow you to extend or modify the form’s visual display or function.

D: You can add custom Javascripts to Entity lists.

Reference:

https://docs.microsoft.com/en-us/powerapps/maker/portals/configure/add-custom-javascript

https://docs.microsoft.com/en-us/powerapps/maker/portals/configure/entity-lists#add-custom-

javascript

Question #101

HOTSPOT

You need to develop a set of Web API’s for a company.

What should you implement? To answer, select the appropriate options in the answer area. NOTE: Each correct selection is worth one point.

Reveal Solution Hide Solution

Correct Answer:

Explanation:

Box 1: Functions

most functions and services that are stateless and do not have side effects.

Box 2: Actions

Actions can have side effects.

Box 3: Complex types

Reference: https://docs.microsoft.com/en-us/powerapps/developer/common-data-service/webapi/use-web-api-actions


Question #102

You are developing an app that uses Common Data Service.

You must integrate Common Data Service with a new web application. You must allow the new web application to display data from Common Data Service. You build a single-page web application using the Web API.

You need to authenticate your app using OAuth.

What should you use?

  • A . Windows Communication Foundation (WCF)
  • B . Cross-Origin Resource Sharing (CORS)
  • C . Microsoft Authentication Library (MSAL)
  • D . Kerberos authentication
  • E . Active Directory Authentication Library (ADAL)

Reveal Solution Hide Solution

Correct Answer: C
C

Explanation:

OAuth requires an identity provider for authentication. For Dataverse, the identity provider is Azure Active Directory (AAD). To authenticate with AAD using a Microsoft work or school account, use the Azure Active Directory Authentication Libraries (ADAL) or Microsoft Authentication Library (MSAL). https://docs.microsoft.com/en-us/powerapps/developer/data-platform/authenticate-oauth

Question #103

DRAG DROP

A company uses Dynamics 365 Sales.

Sales commission must be calculated when an order is placed. You create an Azure Function to perform the calculation. The Azure Function has an HTTP trigger.

You need to configure the Plug-in Registration tool to send data to the Azure Function when an order is placed. You open the Plug-in Registration tool and connect to Dynamics 365 Sales.

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.

Reveal Solution Hide Solution

Correct Answer:

Explanation:

Step 1: SelectRegister New Web Hook.

Configure Dynamics 365 Sales to Call Your Webhook in Azure Functions


Question #103

DRAG DROP

A company uses Dynamics 365 Sales.

Sales commission must be calculated when an order is placed. You create an Azure Function to perform the calculation. The Azure Function has an HTTP trigger.

You need to configure the Plug-in Registration tool to send data to the Azure Function when an order is placed. You open the Plug-in Registration tool and connect to Dynamics 365 Sales.

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.

Reveal Solution Hide Solution

Correct Answer:

Explanation:

Step 1: SelectRegister New Web Hook.

Configure Dynamics 365 Sales to Call Your Webhook in Azure Functions


Question #103

DRAG DROP

A company uses Dynamics 365 Sales.

Sales commission must be calculated when an order is placed. You create an Azure Function to perform the calculation. The Azure Function has an HTTP trigger.

You need to configure the Plug-in Registration tool to send data to the Azure Function when an order is placed. You open the Plug-in Registration tool and connect to Dynamics 365 Sales.

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.

Reveal Solution Hide Solution

Correct Answer:

Explanation:

Step 1: SelectRegister New Web Hook.

Configure Dynamics 365 Sales to Call Your Webhook in Azure Functions


Question #106

A company needs to illustrate the relationships of the entities in Dynamics 365 Sales.

You need to select the appropriate tool to show this graphic.

Which tool should you select?

  • A . Metadata diagram
  • B . Sales Insights
  • C . Power Automate
  • D . Security model

Reveal Solution Hide Solution

Correct Answer: A
A

Explanation:

Visual representation of metadata can be useful, especially when you are trying to describe the relationship between entities in the system. You can use the Metadata Diagram sample code provided for Dynamics 365 Customer Engagement (on-premises) to generate the entity relationship diagrams.

You can create a diagram that shows a relationship for just one entity, or a complex diagram that includes dozens of related entities, including custom and system entities.

Reference: https://docs.microsoft.com/en-us/dynamics365/customerengagement/on-premises/developer/use-metadata-generate-entity-diagrams

Exit mobile version