Topic 4, Misc. Questions
A company updates their client contact information periodically. The contact entity has alternate keys defined. You have the following code. (Line numbers are included for reference only.)
A company has two development instances, two test instances, two staging instances, and
one production instance.
The test team reports connection issues with the test and staging instances.
You need to identify which if the instances the testing team currently has access.
Which two URLs can you use? Each correct answer presents a complete solution.
NOTE: Each correct selection is worth one point.
A.
https://myorg.api.crm.dynamics.com/api/data/v.9.1/
B.
https://dev.crm.dynamics.com/api/discovery/v9.1/Instances
C.
https://dev.crm.dynamics.com/api/discovery/v9.1/Instances(UniqueName=’myorg’)
D.
https://disco.crm.dynamics.com/api/discovery/v9.1/
E.
https://globaldisco.crm.dynamics.com/api/discovery/v9.1/Instances
https://dev.crm.dynamics.com/api/discovery/v9.1/Instances(UniqueName=’myorg’)
https://globaldisco.crm.dynamics.com/api/discovery/v9.1/Instances
Explanation:
C: Organization information is stored in the Instance entity of the Discovery service. To see
the kind of information contained in that entity, send an HTTP GET request to the service
for one of your instances.
GET https://dev.{servername}/api/discovery/v9.0/Instances(UniqueName='myorg')
In the above example, the discovery service is used to obtain the organization information
of the instance with a unique name of "myorg".
Reference:
https://docs.microsoft.com/en-in/dynamics365/customerengagement/onpremises/
developer/webapi/discover-url-organization-web-api
https://docs.microsoft.com/en-us/powerapps/developer/common-dataservice/
webapi/samples/global-discovery-service-csharp
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.
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
A.
From Web Resources, select the JavaScript file for the Account form and then select the
JavaScript file.
B.
Open the web resources file, add the two image web resources to the dependency’s
lists, and then add the custom field new_placeofbirth to the dependency’s list.
C.
In the Account form, select Form Properties, select Non-Event Dependencies, and
then add the custom field new_placeofbirth.
D.
In the Account form, select Form Properties and add the primary JavaScript file and the
other two image web resources in Form Libraries
E.
From Settings, select Customization and then select Customize the System.
F.
Select Account, select Forms, and then select the Account form
In the Account form, select Form Properties, select Non-Event Dependencies, and
then add the custom field new_placeofbirth.
From Settings, select Customization and then select Customize the System.
Select Account, select Forms, and then select the Account form
You are creating an integration that uses an Azure function to create records in the
Common Data Service when leads are submitted from your company website.
You create and configure a Common Data Service application user.
You do not have administrator access to the Common Data Service environment you are
using for access to Azure Active Directory. Company policy dictates that service accounts
must be used for integrations, and integrations must not be granted privileges beyond what
is needed.
You need to recommend actions that an administrator should perform to configure access
for the Azure Function.
Which three actions should you perform? Each correct selection presents part of the
solution.
NOTE: Each correct selection is worth one point.
A.
Create an application registration in Azure Active Directory.
B.
Assign the system administrator security role to the application user.
C.
Assign the Power Platform administrator role to the application user in Azure Active
Directory.
D.
Create a new security role with the minimum required permissions and assign to the
application user.
E.
Grant the application delegated permissions to the Dynamics CRM API in Azure Active
Directory.
F.
Deploy Azure B2B guest permissions to the application user
Create an application registration in Azure Active Directory.
Create a new security role with the minimum required permissions and assign to the
application user.
Grant the application delegated permissions to the Dynamics CRM API in Azure Active
Directory.
Reference:
https://docs.microsoft.com/en-us/powerapps/developer/common-data-service/walkthroughregister-
app-azureactive-directory
You need to select the appropriate methods using the Azure Event Grid.
Which method should you use for each requirement? To answer, drag the appropriate
methods to the correct requirements. Each method 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.
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 – 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 – Rating relationship.
F.
Create a 1:N relationship between the Destination entity and the Rating entity.
Create a 1:N relationship between the Contact system entity and the Address system
entity named Destination.
Create a 1:N relationship between the Address system entity and the Rating entity.
Create a mapping for the Destination – Rating relationship.
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.
Note: This question is part of a series of questions that present the same scenario. Each
question in the series contains a unique solution. Determine whether the solution meets 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 university has implemented Dynamics 365 Customer Engagement. Several departments
use opportunity records to bid for funding for projects within their own departments.
Each department's opportunities are not visible to other departments. However, there are
times when two departments need to work together on an opportunity.
You need to configure the security to meet the business requirements.
Solution: Share the individual opportunity that member of one department are working on
with all members of the second department, and give those members the appropriate
permissions. Does the solution meet the goal?
A.
Yes
B.
No
No
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
Webforms
Entity lists
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#addcustom-
javascript
Five high schools test a custom app from AppSource. They provide feedback that the
Course credit entity should include additional fields that cover information shared by the
schools.
You do not have access to each high school organization.
Each high school administrator must be able to apply the updates to the Course credit
entity.
You need to deliver a custom program that creates the additional fields.
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.
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.
Page 4 out of 17 Pages |
Previous |