Microsoft MB-400 Microsoft Power Apps + Dynamics 365 Developer Exam Practice Test

Page: 1 / 14
Total 65 questions
Question 1

Note: This question is part of a series of questions that present the same scenario. Each question in the series contains a unique solution that might meet the stated goals. Some question sets might have more than one correct solution, while others might not have a correct solution.

After you answer a question in this section, you will NOT be able to return to it. As a result, these questions will not appear in the review screen.

An organization has an Azure SQL Database instance that must be synchronized daily with data from Dynamics 365 Sales. A large amount of data might need to be synchronized on some days.

You need to reduce the time required to synchronize data.

Solution:

Enable change tracking for entities that will be synchronized.

Use the Data Export Service to sync data between the database and Dynamics 365 Sales.

Does the solution meet the goal?



Answer : A

Large organizations that synchronize their data with external data sources can now enable entities for change tracking. You can export or retrieve a selected set of data, and then keep the external data warehouse in sync.

The Data Export Service is an add-on service made available on Microsoft AppSource that adds the ability to replicate data from Common Data Service database to an Azure SQL Database store in a customer-owned Azure subscription.

The Data Export Service intelligently synchronizes the entire data initially and thereafter synchronizes on a continuous basis as changes occur (delta changes) in the system.

You can use the Data Export Service with model-driven apps in Dynamics 365, such as Dynamics 365 Sales and Dynamics 365 Customer Service.


https://docs.microsoft.com/en-us/power-platform/admin/enable-change-tracking-control-data-synchronization

https://docs.microsoft.com/en-us/power-platform/admin/replicate-data-microsoft-azure-sql-database

Question 2

Note: This question is part of a series of questions that present the same scenario. Each question in the series contains a unique solution that might meet the stated goals. Some question sets might have more than one correct solution, while others might not have a correct solution.

After you answer a question in this section, you will NOT be able to return to it. As a result, these questions will not appear in the review screen.

An organization has an Azure SQL Database instance that must be synchronized daily with data from Dynamics 365 Sales. A large amount of data might need to be synchronized on some days.

You need to reduce the time required to synchronize data.

Solution:

*Enable change tracking for entities that will be synchronized.

*Implement a console application that queries for changes.

Does the solution meet the goal?



Answer : B

Instead use the Data Export Service to sync data between the database and Dynamics 365 Sales.

References:

https://docs.microsoft.com/en-us/power-platform/admin/enable-change-tracking-control-data-synchronization


Question 3

Note: This question is part of a series of questions that present the same scenario. Each question in the series contains a unique solution that might meet the stated goals. Some question sets might have more than one correct solution, while others might not have a correct solution.

After you answer a question in this section, you will NOT be able to return to it. As a result, these questions will not appear in the review screen.

A Common Data Service (CDS) environment has two custom entities named Building code and Work item. Building code has a code date custom field and Work item has an elapsed time custom field. Construction workers use a consolidated custom form with data from both entities to fill.in their daily work items.

A JavaScript library is used with these custom entities and fields to apply complex logic.

You need to ensure that the JavaScript library continues to function as originally designed if other developers expand the environment.

Solution:

*In the Building code form, add the JavaScript library in the events tab and the Code date field to the non-event dependencies.

*In the Work item form, add the JavaScript library in the Events tab and the Elapsed time field to the non-event dependencies.

Does the solution meet the goal?



Answer : B

Instead, in the JavaScript library, add Building code with Code date and Work item with Elapsed time in the dependencies tab.


https://docs.microsoft.com/en-us/dynamics365/customerengagement/on-premises/developer/web-resource-dependencies

Question 4

Note: This question is part of a series of questions that present the same scenario. Each question in the series contains a unique solution that might meet the stated goals. Some question sets might have more than one correct solution, while others might not have a correct solution.

After you answer a question in this section, you will NOT be able to return to it. As a result, these questions will not appear in the review screen.

A Common Data Service (CDS) environment has two custom entities named Building code and Work item. Building code has a code date custom field and Work item has an elapsed time custom field. Construction workers use a consolidated custom form with data from both entities to fill.in their daily work items.

A JavaScript library is used with these custom entities and fields to apply complex logic.

You need to ensure that the JavaScript library continues to function as originally designed if other developers expand the environment.

Solution: In the JavaScript library, add Building code with Code date and Work item with Elapsed time in the dependencies tab.

Does the solution meet the goal?



Answer : A

Within a solution you can define dependencies within solution components. Up until Dynamics 365 for Customer Engagement apps version 9.0 the main purpose of these dependencies was to prevent the deletion of a solution component when another solution component depended on it.

The following image shows the dependencies tab within the web resource form. Dependencies between web resources are set in the top list.


https://docs.microsoft.com/en-us/dynamics365/customerengagement/on-premises/developer/web-resource-dependencies

Question 5

Note: This question is part of a series of questions that present the same scenario. Each question in the series contains a unique solution that might meet the stated goals. Some question sets might have more than one correct solution, while others might not have a correct solution.

After you answer a question in this section, you will NOT be able to return to it. As a result, these questions will not appear in the review screen.

A Common Data Service (CDS) environment has two custom entities named Building code and Work item. Building code has a code date custom field and Work item has an elapsed time custom field. Construction workers use a consolidated custom form with data from both entities to fill.in their daily work items.

A JavaScript library is used with these custom entities and fields to apply complex logic.

You need to ensure that the JavaScript library continues to function as originally designed if other developers expand the environment.

Solution: In form properties of the consolidated form, add the JavaScript library in the events tab and add the two custom fields to the dependent fields section of the non-event dependencies tab.

Does the solution meet the goal?



Answer : B

Instead, in the JavaScript library, add Building code with Code date and Work item with Elapsed time in the dependencies tab.


https://docs.microsoft.com/en-us/dynamics365/customerengagement/on-premises/developer/web-resource-dependencies

Question 6

An organization has a Dynamics 365 Customer Engagement.

You plan to use a JavaScript web resources file in the Accounts form. The file has a dependency on two image web resource files and on the custom field new_placeofbirth in the Account entity.

You need to add the dependencies for the JavaScript file.

Which three action should you perform? Each correct answer presents part of the solution.

NOTE: Each correct selection is worth one point.



Answer : B, C, E

All the Web Resources stored in the database can be accessed in the CRM. Following are the steps involved

Step 1 (E) -- Go to Settings then Customizations and then Customize the System.

Step 2 (B)-- From the left navigation, select CRM Web Resources.

C: In our Dynamics 365 forms, there are measures we can take to ensure fields that are being used by JavaScript are not removed from forms. To prevent this from happening, we can go to Form Properties and select the Non-Event Dependencies, and add the website field:


https://msdynamics.net/microsoft-dynamics-news/crm-web-resources-using-jscript/

https://docs.microsoft.com/en-us/dynamics365/customerengagement/on-premises/developer/web-resource-dependencies

Question 7

A client requires that the system send an email from a button on their customer contact form.

You need to call the action from JavaScript.

Which two functions achieve this result? Each correct presents a complete solution.

NOTE: Each correct selection is worth one point.



Answer : C

You can execute action using Xrm.WebApi.online.execute in Dynamics 365 CRM V9.0.


https://carldesouza.com/calling-a-dynamics-365-action-from-javascript-using-xrm-webapi-online-execute/

Page:    1 / 14   
Total 65 questions