Exam4Training

Microsoft MB-500 Microsoft Dynamics 365: Finance and Operations Apps Developer Exam Online Training

Question #1

Topic 1, First Up Consultants

Overview

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

Overview

First Up Consultants provides Commercial Cleaning services to its clients. The company purchases all its cleaning supplies from Best For You Organics Company.

First Up Consultants is using a cloud-based Dynamics 365 Finance instance. The system has a foundation table named CashDisc that contains one cash discount record for each cash discount type.

Best For You Organics Company invoices First Up Consultants and allows cash discounts based on how fast an invoice is paid. First Up Consultants is entitled to a two percent discount from Best for You Organics for any invoice that is paid within 10 days and has a minimum invoice amount of $2,500.

Business requirements

All new and extended objects must be located in an existing model named FinanceExt. The creation of new models is not permitted.

Best For You Organics Company requires that First Up Consultants apply specific minimum invoice amounts to each cash discount record. A cash discount may only be applied when the minimum invoice amount requirement has been met. The new field must be added to the CashDisc form grid with the allowable visible number of characters set to 10.

First Up Consultants must retrieve the required Cash Discount methods and corresponding minimum invoice amounts directly from Best For You Organics Company’s enterprise resource planning (ERP) system.

The Chief Financial Officer (CFO) requires the following reports:

– A report that shows all outstanding invoices, their cash discount types including the new minimum threshold applicable, and the amount of the discount. The report must only be accessed by users who are members of the Accounts Payable Manager role.

– You must create a Microsoft Excel workbook that lists unpaid invoices to Best For You Organics Company that have a due date earlier than 5/1/2019 and an Invoice Amount between $20,000 and $100,000.

Cash discounts for unpaid invoices must be updated with the new minimum invoice amounts.

Financial requirements

Vendor Invoices Past Due form

You must be able to filter the grid on the Vendor Invoices Past Due form. By default, you must filter the form based on the Due Date, Invoice Amount, and Vendor columns. Users must be able to apply reusable user-specific filters to a page using multiple fields.

CashDisc form

You must extend the CashDisc form to add a new field named MinimumInvoiceAmount to the form. You must add a new Extended Data Type to the extension model for the new field. The new field must be added above the discount method field. The field must display 10 characters.

The accounts payable manager and the accounts payable clerk have Delete access to the form. You must after permissions to limit accounts payable clerks to have only View access to the form.

Cash Discount Records report

You must create a report that shows a list of CashDisc records. You must include the MinimumInvoiceAmount field and filtered data by using the CashDisc.DiscMethod field. Applicable security objects must be created in the existing “FinanceExt” model and configured so the report is accessible by those users to the accounts payable role.

Batch jobs

You must create a batch job that runs on the last day of each month to update the current unpaid invoices with changes in the minimum invoice amount.

The job must meet the following requirements:

– Accept the following parameters: Vendor, DueDate.

– Be callable by an Action menu item.

– Allow users to specify vendors to include in the job.

– Use SysOperation Framework for all batch jobs.

You must create a batch job to identify modified CashDisc.MinimumInvoiceAmount values and apply these to open Purchase Lines.

HOTSPOT

You need to configure security for the CashDisc form.

What changes should you make? 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 #2

You have an enumeration named truckStatus that has the following statuses:

✑ Empty

✑ Loaded

✑ Completed

You have the following code:

You need to add the following statuses to the enumeration: Quarantine, InTransit

What should you do?

  • A . Add a new case statement in the model of the existing code,
  • B . Add a post handler to the method that checks the enumeration and logic for your new enumeration values using the enumeration value.
  • C . Add a post handler to the method that checks the enumeration and logic for your new enumeration values using the integer value of the enumeration.
  • D . Add a post handler to the method that checks the enumeration and logic for your new enumeration values using a range comparison for your new values.

Reveal Solution Hide Solution

Correct Answer: B
Question #3

You need to update the CashDisc report to meet the requirements.

What should you do?

  • A . Customize the existing CashDisc report in the overlayering model and add the new field to the design.
  • B . Extend the existing CashDisc report in the extension model and add the new field to the design.
  • C . Duplicate the existing CashDisc report in the extension model and add the new field to the design.
  • D . Delete the existing CashDisc report in the extension model and create a new report.

Reveal Solution Hide Solution

Correct Answer: B
Question #4

You need to configure models for the project.

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 . Overlay the existing FinanceExt model and populate the solution definition.
  • B . Modify the DefaultModelForNewProject setting in the DefaultConfig.xml file and name the model FinanceExt.
  • C . Create a new model that extends the existing FinanceExt model.
  • D . Extend the existing FinanceExt model and populate the project model definition.

Reveal Solution Hide Solution

Correct Answer: A, D
A, D

Explanation:

https://www.google.com/amp/s/robscode.onl/d365-set-default-model-for-new-projects/amp/

Question #5

HOTSPOT

You need to modify the CashDisc form to meet the requirements.

Which objects 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: CashDisc form

You must extend the CashDisc form to add a new field named MinimumInvoiceAmount to the form. You must add a new Extended Data Type to the extension model for the new field. The new field must be added above the discount method field. The field must display 10 characters.

Box 1: extension

To add a new field to an existing table, you must first create a table extension.

Box 2: field

Box 3: field group

Box 4: data source

Often, the information that is stored in existing tables doesn’t satisfy customer requirements. Therefore, additional tables must be created, and data from those tables must be shown on pages.

You can add new data sources to existing forms through extension.

Follow these steps.

✑ In the extension model, create a form extension for the selected form.

✑ Right-click the form extension, and then select New Data Source.

Reference: https://docs.microsoft.com/en-us/dynamics365/fin-ops-core/dev-itpro/extensibility/add-datasource


Question #6

You need to configure filtering for the Vendor Past Due Invoices form.

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

  • A . QuickFilter
  • B . Advanced Filter
  • C . Grid Column Filtering
  • D . Filter pane

Reveal Solution Hide Solution

Correct Answer: A, C
Question #7

You need to modify the environment to meet User1’s requirements.

What should you do?

  • A . Create an extension of CashDisc in a new project and add the field to the extended table,
  • B . Create a new table named CashDiscExtension in the project.
  • C . Use Open Designer to add the field to the table.
  • D . Create an overlayer of CashDisc in a new project and add the field.

Reveal Solution Hide Solution

Correct Answer: A
A

Explanation:

Scenario: A sales manager suspects a data-related issue in the vendor exclusion list. User1 must identify the user who created the referenced exclusion records.

Question #8

DRAG DROP

You need to create the outstanding invoice report for the CFO.

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

Reveal Solution Hide Solution

Correct Answer:

Explanation:

Scenario: The Chief Financial Officer (CFO) requires the following reports:

A report that shows all outstanding invoices, their cash discount types including the new minimum threshold applicable, and the amount of the discount. The report must only be accessed by users who are members of the Accounts Payable Manager role.

Box 1: DataContractAttribute

DataContractAttribute C This attribute is applied to an X++ class and specifies that the class can be used as a data contract (that it should be serialized).

Box 2: DataMemberAttribute

DataMemberAttribute C This attribute is applied to a parm (parameter) method on an X++ data contract class and specifies that the data member should be serialized.

Box 3: SRSReportParameterAttribute

You set the SRSReportParameterAttribute attribute to the data contract you created for the RDP class.

Reference: https://docs.microsoft.com/en-us/dynamicsax-2012/appuser-itpro/how-to-use-a-report-data-provider-class-in-a-report


Question #9

Topic 2, World Wide Importers

Overview

This is a case study. Case studies are not timed separately. You can use as much exam time as youwould 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

Wide World Importers sell office supplies, furniture, and fittings to their customers across the United States.

The company has the following locations:

– a retail store in Seattle

– a warehouse in Seattle

– a customer support and call center in Atlanta

– a team of field workers that provide furniture installation services at customer sites.

Wide World Importers plans to implement Dynamics 365 Finance and Microsoft Azure cloud platform features.

Current environment

Customers may place orders by email, phone, or by using the company’s website. The company authorizes and processes credit card transactions by using a web-based application. Customer, inventory, supplier, and other master and transactional data is stored in a legacy database.

The company collects feedback from customers by phone or a form on the company’s website and maintains the data in a Microsoft Excel workbook.

Wide World Importers runs on-premises applications to manage payroll and workers compensation. The company has a set of Microsoft Power BI dashboards that present data from a reporting database.

The company creates a Lifecycle Services (LCS) implementation project and completes Dynamics 365 Finance onboarding.

The company maintains production, quality assurance (QA), development, user acceptance testing (UAT), and build environments.

Requirements

General

– You must configure a cloud-based Dynamics 365 Finance development environment and enable code extension that support updates.

– You must configure version control and a Build environment.

– You must migrate all legacy data to the new system.

– You must implement best practices for X++ coding, the data model, caching, and security.

– All new code must be unit tested in a development environment and then validated by the QA team before code is added to source control.

Business processes

– You must configure vendor trade agreements.

– Products must be shipped directly from suppliers to customers depending on customer location to save indirect costs.

– You must collect customer feedback on products shipped directly from vendors.

– You must deploy code to a UAT environment for testing before deploying code to production.

– You must validate all entries for the purchase order creation form.

– You must develop a web portal that allows customers to browse products, place orders, and check order status. Product data for the web portal must be integrated as periodic batches.

Business systems

– You must install and configure a third-party solution for credit card processing within Dynamics 365 Finance. The third-party company will provide a deployable package.

– The workers compensation application must be able to call an API to update worker compensation details in Dynamics 365 Finance.

– You must develop a process to import payroll journals into the system.

– You must configure the warehouse mobile device portal for warehouse operations.

– You must install a third-party solution to support web portal integration. The solution is supplied as a source code model file.

Vendor exclusion list

You must develop a new solution to maintain a Vendor exclusion list for each customer and item combination.

The solution must meet the following requirements:

– Isolate all new vendor exclusion codes as a new assembly by creating a table named VendExclusions.

– Create an index for the table named PrimaryIdx that uses the following fields: CustAccount, ItemId, VendAccount.

– Ensure that users can open the Vendor Exclusion list report from the customer master form. The list must display the customer account, Item ID, and Vendor account fields.

– Implement the Excel integration for the Vendor Exclusion List form.

– Provide functionality to periodically export the Vendor exclusion list to prepare reports by using standard reporting capabilities of Dynamics 365 Unified Operations.

– Develop necessary security permissions to view and maintain the new Vendor exclusion list functionality and reporting. Users with maintain rights will be able create, update, and delete the exclusion list. Permissions must be assigned to security roles to match company security model.

– Maintain referential integrity with other tables.

– Users must be presented with a warning message before a direct delivery purchase order is created for a vendor in exclusion list.

– Sales managers must be alerted when a new exclusion record is added to the system.

Security

– You must implement the record level audit feature to identify the users who created the record.

– Grant specific users rights to maintain the vendor exclusion list by using Excel.

– You must implement validation to check whether a proposed direct delivery purchase order vendor is on the exclusion list for the customer and product combination.

Issues

User1 is not able to access many features in the system. You must provide User1 administrator rights. A sales manager suspects a data-related issue in the vendor exclusion list. User1 must identify the user who created the referenced exclusion records.

Developer2 joins the company and does not have access to a development environment or source control. User2 reports performance issues when they generate direct delivery purchase orders after current updates are applied.

User2 reports that they cannot access new functionality and reports.

You need to meet the requirements for the purchase order creation form.

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 . Create a class and add a form data source event handler method to the class.
  • B . In Application Explorer, create a table extension and implement validation.
  • C . Implement Chain of Command (CoC) and method wrapping by creating a form extension class.
  • D . In Application Explorer, create a form extension and implement validation.

Reveal Solution Hide Solution

Correct Answer: A, C
A, C

Explanation:

Scenario:

Users must be presented with a warning message before a direct delivery purchase order is created for a vendor in exclusion list.

You must implement validation to check whether a proposed direct delivery purchase order vendor is on the exclusion list for the customer and product combination.

Question #10

You need to implement the migration requirements.

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

  • A . a data entity and a Data management import job
  • B . a data entity and Entity store
  • C . a data entity and bring your own database (BYOD)
  • D . a public data entity and the Excel add-in

Reveal Solution Hide Solution

Correct Answer: BD
BD

Explanation:

Scenario: Implement the Excel integration for the Vendor Exclusion List form.

B: By opening entity data in Excel, you can quickly and easily view and edit the data by using the Excel add-in.

Reference:

https://docs.microsoft.com/en-us/dynamics365/fin-ops-core/dev-itpro/office-integration/use-excel-add-in

https://docs.microsoft.com/en-us/dynamics365/fin-ops-core/dev-itpro/analytics/power-bi-integration

Question #11

HOTSPOT

You need to create the new table for the vendor exclusion list.

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:

Scenario: You must develop a new solution to maintain a Vendor exclusion list for each customer and item combination.

The solution must meet the following requirements:

✑ Isolate all new vendor exclusion codes as a new assembly by creating a table named VendExclusions.

✑ Create an index for the table named PrimaryIdx that uses the following fields: CustAccount, ItemId, VendAccount.

✑ Ensure that users can open the Vendor Exclusion list report from the customer master form. The list must display the customer account, Item ID, and Vendor account fields.

✑ Maintain referential integrity with other tables.

Box 1: a table extension for Vendors and relation for the Vendor exclusions

Box 2: RelationShip Type

Reference: https://docs.microsoft.com/en-us/dynamics365/fin-ops-core/dev-itpro/data-entities/develop-composite-data-entities


Question #12

You need to apply a form pattern to the Vendor exclusion list.

Which pattern should you use?

  • A . List Page
  • B . Simple List
  • C . List View
  • D . Workspace

Reveal Solution Hide Solution

Correct Answer: A
A

Explanation:

A list page presents a set of data on a user interface that is optimized so that you can browse records, find the right record, and then take an action upon that record. The list page lets the user search, filter, and sort the data. FactBoxes on the right side of the grid show related data for the active record. Actions that are relevant to the record are located on the ActionPane at the top of the page.

Scenario: You must develop a new solution to maintain a Vendor exclusion list for each customer and item combination.

The solution must meet the following requirements:

✑ Isolate all new vendor exclusion codes as a new assembly by creating a table named VendExclusions.

✑ Create an index for the table named PrimaryIdx that uses the following fields: CustAccount, ItemId, VendAccount.

✑ Ensure that users can open the Vendor Exclusion list report from the customer master form. The list must display the customer account, Item ID, and Vendor account fields.

Reference: https://docs.microsoft.com/en-us/dynamics365/fin-ops-core/dev-itpro/user-interface/list-page-form-pattern

Question #13

HOTSPOT

You need to implement the reporting requirements for the Vendor exclusion list.

Which options you should 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:

SQL Server Reporting Services

Controller class

Reference: https://docs.microsoft.com/en-us/dynamics365/fin-ops-core/dev-itpro/analytics/create-nextgen-reporting-solutions


Question #14

DRAG DROP

You need to deploy the web portal integration solution.

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.

Reveal Solution Hide Solution

Correct Answer:

Explanation:

Scenario: You must install and configure a third-party solution for credit card processing within Dynamics 365 Finance. The third-party company will provide a deployable package.

You must develop a web portal that allows customers to browse products, place orders, and check order status. Product data for the web portal must be integrated as periodic batches.

You must configure the warehouse mobile device portal for warehouse operations.

You must install a third-party solution to support web portal integration. The solution is supplied as a source code model file.

Step 1: Add the package to source control and check in the changes.

Deployable packages from third parties can be manually installed on a development VM, and the installed artifacts can then be added to source control.

Step 2: Import the model into a Development environment.

Install a model in a development environment

Step 3: Synchronize the models in the Developer environment by using Get latest feature

Because the models and runtime packages are in source control, other developers who use other development environments can just synchronize the models and packages to their workspace by using the Get latest feature of source control.

Step 4: Build and create a deployment package

The build process will include this runtime package in the final deployable package. This allows customers to take the deployable package from the build and have one package to deploy to their environments. The one package includes both custom solutions and all the third party solutions.

Reference:

https://docs.microsoft.com/en-us/dynamics365/fin-ops-core/dev-itpro/dev-tools/manage-runtime-packages

https://docs.microsoft.com/en-us/dynamics365/fin-ops-core/dev-itpro/dev-tools/manage-runtime-packages#deploying-third-party-code


Question #15

DRAG DROP

You need to develop, test, and deploy the Vendor Exclusion list solution.

What should you create? To answer, drag the appropriate objects to the correct actions. Each element 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: package

An AOT package is a deployment and compilation unit of one or more models that can be applied to an environment. It includes model metadata, binaries, reports and other associated resources. One or more AOT packages can be packaged into a deployable package, which is the vehicle used for deployment of code (and customizations) on demo, sandbox, and production environments.

Box 2: New model

Model – You configure your model to refer to two other models. This enables your model to reference metadata and code elements that are in other packages.

Box 3: project

Project – You create a project and then associate your project to your new model. You add elements to your project, which are also added to your model. Specifically, you add an extended data type (EDT). You also add a table that you populate with fields and a method.

Box 4: deployable package

Reference: https://docs.microsoft.com/en-us/dynamics365/fin-ops-core/dev-itpro/dev-tools/create-data-model-elements


Question #16

HOTSPOT

You need to implement the integration for the Vendor Exclusion List form.

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: Table extension

Isolate all new vendor exclusion codes as a new assembly by creating a table named VendExclusions.

Implement the Excel integration for the Vendor Exclusion List form.

The table extension object allows you to add additional fields or to change some properties on a table provided by the Dynamics 365 Business Central service. In this way, you can add data to the same table and treat it as a single table.

Box 2: Unique key

Create an index for the table named PrimaryIdx that uses the following fields: CustAccount, ItemId, VendAccount.

Box 3: Build and synchronize the database.

A project property lets you specify that the synchronize operation for the database should be performed every time that you build the project. This can be useful when you’re making changes to

the table structure for an application. Each time that you build, you will know that the database is synchronized with the tables as they are defined in the project.

Reference:

https://docs.microsoft.com/en-us/dynamics365/business-central/dev-itpro/developer/devenv-table-ext-object

https://docs.microsoft.com/en-us/dynamics365/fin-ops-core/dev-itpro/dev-tools/build-operations#synchronizing-the-database-at-each-build


Question #17

HOTSPOT

The system includes the following code: (Line numbers are included for reference only.)

You need to apply changes to address User2’s issues.

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:

Yes, No, Yes, Yes.

https://community.dynamics.com/ax/b/nevoitechax/posts/what-is-recid-in-microsoft-dynamics-ax-365fo


Question #18

DRAG DROP

You need to implement the company’s integration requirements.

Which integration strategies should you use? To answer, drag the appropriate integration strategies to the correct requirements. Each integration strategy 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: asynchronous

An asynchronous pattern is a non-blocking pattern, where the caller submits the request and then continues without waiting for a response.

Box 2: Synchronous

A synchronous pattern is a blocking request and response pattern, where the caller is blocked until the callee has finished running and gives a response.

Box 3: Synchronous

Box 4: asynchronous

Batch data is asynchronous.

Reference: https://docs.microsoft.com/en-us/dynamics365/fin-ops-core/dev-itpro/data-entities/integration-overview#synchronous-vs-asynchronous-integration-patterns


Question #19

You need to investigate the Vendor exclusion list issue.

What should you do?

  • A . Navigate to the General tab, select Record Info, and then select Show all fields.
  • B . Navigate to the Options tab, select Record Info, and then select Show all fields.
  • C . Navigate to the Options tab and select Database log.
  • D . Navigate to the Page options tab, select Record Info, and then select Show all fields.

Reveal Solution Hide Solution

Correct Answer: B
Question #20

You need to implement the payroll application data process.

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

  • A . a data contract class that uses the DataContractAttribute attribute
  • B . a service class that has a public method which accepts a single parameter for a contract
  • C . a class that extends SysOperationServiceBase
  • D . an UIBuilder class that extends SysOperationAutomaticUIBuilder

Reveal Solution Hide Solution

Correct Answer: AC
AC

Explanation:

Scenario: You must develop a process to import payroll journals into the system.

A: Data Contract: Data contract class is the model class defining attributes needed for batch operations. These attributes are provided by the user, in a dialog. DataContractAttribute attribute is needed for the class and the properties methods requires DataMemberAttribute attribute.

C: Service: Service class extends from the SysOperationServiceBase class and contains the business logic for the batch operation. Developers often tend to add the business logic in controller classes, which violates the Single responsibility principle.

Incorrect Answers:

D: UI Builder: UI Builder class extends from SysOperationAutomaticUIBuilder class and is used for

adding custom behavior to dialog / dialog fields dynamically constructed by the SysOperation framework.

Reference: http://daxingwitheshant.blogspot.com/2018/06/sysoperation-framework.html

Question #21

You need to configure security for the Vendor Exclusion List report.

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 . Create a new privilege, add a reference to an output menu item, and then add the new privilege to a role.
  • B . Create a new security policy and add an output menu item. Add the new security policy to duty extension and then to a role extension.
  • C . Create a new privilege extension and add an output menu item. Add the privilege to a duty extension and then to a role extension.
  • D . Create a new privilege and assign it to an output menu item. Add the new privilege to a duty extension and then add the duty extension to a role.

Reveal Solution Hide Solution

Correct Answer: AD
AD

Explanation:

Scenario: Develop necessary security permissions to view and maintain the new Vendor exclusion list functionality and reporting. Users with maintain rights will be able create, update, and delete the exclusion list. Permissions must be assigned to security roles to match company security model.

The privileges are simply a way to grant permissions to an entry point, which can be services, to a duty, role, or even directly to a user. Typically, we only add entry points to a privilege, such as menu items.

D: You can extend a Security Role or a Security Duty to add new duties/privileges to these elements.

Reference:

https://www.oreilly.com/library/view/extending-microsoft-dynamics/9781786467133/40a348f3-0f4c-4d47-a566-59f3a2e6afa0.xhtml

https://docs.microsoft.com/en-us/dynamics365/fin-ops-core/dev-itpro/extensibility/customization-overlayering-extensions#security-role-and-duty-extensions

Question #22

Topic 3, Munson’s Pickles and Preserves Farm

Background

Munson’s Pickles and Preserves Farm produces and sells jarred food goods. The organization has several production and warehouse locations across the United States. Each location runs both production and warehousing operations. The company has three locations: East Central, and West.

The company is upgrading its Dynamics AX 2009 system to Dynamics 565 Finance.

Current environment

Munson s Pickles and Preserves Farm plans to migrate customizations, data, and integration from its legacy system into Dynamics 365 finance and operations apps.

The Dynamics 365 finance and operations environment includes:

• multiple cloud-hosted development environments using Microsoft Visual Studio 2017

• a Microsoft Azure DevOps project for source control

• two tier 2 environments for user acceptance testing and staging, as wen as production Munson s Pickles and Preserves Farm is currently in the planning and development phase of the upgrade process- The company’s internal development team needs additional development resources to address issues. The company already created a project that rs set up to use a custom model named GPExtensions.

Integrations

Munson’s Pickles and Preserves Farm has a new integration for its freight processing information. The internal development team created the secure file transfer protocol (SFTP) site for the source information to be stored and the staging table to house the source information once the data is added to Dynamics 365 Finance, information from the source will be transferred once a day from the source system and integrated with the target system. More than 10.000 records will be transferred over the integration. The company created an aggregate entity for the integration to minimize the amount of transmitted data. Munson s Pickles and Preserves Farm has added a new integration for freight processing where all item weights, dimensions, and other factors will be configured in the external portal while planning the loads. Once the load is planned, it will be integrated into Dynamics 36S finance and operations apps for the freight invoice processing to occur.

No duplicate invoices or posting are associated with the freight invoice charges. The integration of this information from the source system is intended only for report creation and compilation purposes.

Planned changes

Munson’ s Pickles and Preserves Farm wants to change inventory forms to fit its current needs. Any modifications or enhancements must follow the existing functionality for forms m Dynamics 365 Finance.

Requirements

Munson’s Pickles and Preserves Farm wants to change inventory forms to fit its current needs. Any modifications or enhancements must follow the existing functionality for forms m Dynamics 365 Finance.

Integrations

All data from integrations have the same format as an existing Dynamics 365 Finance apps field. All enhancements or customizations must use existing assets before creating new functionality.

Munson’s Pickles and Preserves Farm wants to change its integration strategy to include real-time data from the freight processing source system. The inventory must update as it is sold from the system. That information will be updated in Dynamics 365 Finance.

The freight processing integration requires the use of an SFTP site to store XML files from the source system. The additional integration will use OData and must be transferred in real time.

A periodic batch job must

• Pull data from the SFTP site.

• Import the data to a staging table used to hold the information from the source system.

• Map source data to the target table m Dynamics 365 Finance.

The imported Load ID field must be added to the Sales Order header for all processed orders. Additional requirements for integrations, including other integration strategies, may be necessary as the company grows. Existing tables must be changed to include the Load ID. The database will need to be synched before adding the Load ID field.

Changes

Munson’s Pickles and Preserves Farm must change the Inventory Status form to include more columns. It plans to create a table to enter the data for the Inventory Status form as a new data source. The company wants to add both the Product Name field and Batch ID field to this new table. The current form includes the item number, location, license plate, product inventory dimensions, and quantity.

The grid on the inventory Status form must include the product name by using the item number and legal entity. The user interface must be created to include the new columns and the data must be available to add to the gnd. The form must have only an Action Pane, a Navigation List a List Style Grid, a Details Header, and a Details Tab in the design and include the Load ID field.

Munson’s Pickles and Preserves Farm is currently in the process of adding the other required fields: one for Product Name and one for Batch ID- The new fields must be related to extended data types for the original fields on the existing data source for the Inventory Status form. Munson’s Pickles and Preserves Farm plans to add the EcoResProductName and Batch ID data to the extended table for WHSTmpStatusChange. The fields on the table extension must be populated with data and visible on the inventory Status form on insert.

Issues

• The Internal development team has created the SFTP site connections, the staging table, and the batch Jobs for the new integration for freight processing. The development team needs to map the source data to the target table and the data management workspace. The development team notices errors with mapping target fields in the data management workspace. The team needs another developer to configure the table extensions, class extensions, and form extensions that are required for the planned changes.

• The internal development team has issues adding the required fields to the inventory Status standard form. The team needs another developer to configure the table extensions, class extensions, and form extensions that are required for the planned changes.

HOTSPOT

You need to create a chain of command method for inserting the data on the table for the new fields.

How should you complete the code? To answer, select the appropriate configuration m the answer area. NOTE: Each correct selection is worth one point.

Reveal Solution Hide Solution

Correct Answer:

Explanation:

https://learn.microsoft.com/en-us/dynamics365/fin-ops-core/dev-itpro/extensibility/add-method-table


Question #23

You need to set up the recurring data integration to pull data from the SFTP site into Dynamics 365 Finance.

Which API architecture type should you use?

  • A . REST
  • B . SOAP
  • C . RPC
  • D . JSON

Reveal Solution Hide Solution

Correct Answer: A
Question #24

DRAG DROP

You need to add new fields to the standard form and organize the grid to meet the requirements.

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:


Question #25

You need to select an integration strategy to meet the new freight processing requirement.

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

  • A . custom web service
  • B . batch data API EC.
  • C . OData
  • D . asynchronous integration

Reveal Solution Hide Solution

Correct Answer: A, C
Question #26

HOTSPOT

You need to design integrations for the freight processing source system

Which integration strategies should you implement? To answer, select the appropriate options in the answer area. NOTE: Each correct selection is with one point.

Reveal Solution Hide Solution

Correct Answer:


Question #27

You need to apply a pattern to the newly created form to satisfy the requirements.

Which form pattern should you apply?

  • A . Table of Contents
  • B . Simple Let and Details
  • C . List Page
  • D . Details Master

Reveal Solution Hide Solution

Correct Answer: B
Question #28

DRAG DROP

You need to map the target data fields in the Data management workspace for the custom data entity.

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

DRAG DROP

You need to create an extension of the table and perform a build and synchronize the newly extended table.

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

A company uses Dynamics 365 Finance.

You have two tables as shown:

When an employee is deleted from EmplTable, the corresponding bank account information must automatically be deleted from EmplBankAccount.

You need to ensure that the requirement is met

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

  • A . Select the foreign key relation properties from EmplBankAccount.
  • B . Set the value of the OnDelete property to Restricted.
  • C . Set the value of the OnDelete property to Cascade.
  • D . Select the foreign key relation properties from EmplTable.

Reveal Solution Hide Solution

Correct Answer: A, C

Question #31

Topic 4, Misc Questions

You have an enumeration named truckStatus that has the following statuses:

• Empty

• Loaded

• Completed

You have the following code:

You need to extend this (enumeration and add the following statuses to the enumeration:

Quarantine, InTransit. You must then modify code that validates the switch statement.

Solution: Add a new case statement in the model of the existing code.

Does the solution meet the goal?

  • A . Yes
  • B . No

Reveal Solution Hide Solution

Correct Answer: B
Question #32

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.

You have an enumeration named truckStatus that has the following statuses:

✑ Empty

✑ Loaded

✑ Completed

You have the following code:

You need to extend this enumeration and add the following statuses to the enumeration:

Quarantine, InTransit. You must then modify code that validates the switch statement.

Solution: Add a post handler to the method that checks the enumeration and logic for your new enumeration values using the integer value of the enumeration.

Does the solution meet the goal?

  • A . Yes.
  • B . No

Reveal Solution Hide Solution

Correct Answer: A
Question #33

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.

You have an enumeration named truckStatus that has the following statuses:

✑ Empty

✑ Loaded

✑ Completed

You have the following code:

You need to extend this enumeration and add the following statuses to the enumeration:

Quarantine, InTransit. You must then modify code that validates the switch statement.

Solution: Add a post handler to the method that checks the enumeration and logic for your new enumeration values using the enumeration value.

Does the solution meet the goal?

  • A . Yes.
  • B . No

Reveal Solution Hide Solution

Correct Answer: A
Question #34

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.

You create a new form in a project.

You need to display tabs in a vertical alignment.

Solution: Apply the Simple List pattern.

Does the solution meet the goal?

  • A . Yes
  • B . No

Reveal Solution Hide Solution

Correct Answer: B
B

Explanation:

https://docs.microsoft.com/en-us/dynamics365/fin-ops-core/dev-itpro/user-interface/simple-list-form-pattern

Question #35

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.

You create a new form in a project.

You need to display tabs in a vertical alignment.

Solution: Apply the Operational Workspaces pattern.

Does the solution meet the goal?

  • A . Yes
  • B . No

Reveal Solution Hide Solution

Correct Answer: A
A

Explanation:

Reference: https://docs.microsoft.com/en-us/dynamics365/fin-ops-core/dev-itpro/user-interface/section-tabbed-list-subpattern

Question #36

Note: This question is part of a scries 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.

You create a new form in a project.

You need to display tabs in a vertical alignment.

Solution: Apply the Details Master pattern.

Does the solution meet the goal?

  • A . Yes
  • B . No

Reveal Solution Hide Solution

Correct Answer: B
B

Explanation:

https://docs.microsoft.com/en-us/dynamics365/fin-ops-core/dev-itpro/user-interface/section-tabbed-list-subpattern

Question #37

You are a Dynamics 365 Finance developer. You create a class.

You need to mark the class to ensure that when code is compiled, the process fails if a specific method is called in the source code.

Which attribute should you use?

  • A . SysObsoleteAttribute
  • B . getAttributes
  • C . SysEntryPointAttribute
  • D . SysAttribute

Reveal Solution Hide Solution

Correct Answer: A
A

Explanation:

One use of the SysObsoleteAttribute class is to notify the compiler that the compile should fail if a particular method is called in the source code. The compiler rejects the compile, and displays the specific message that is stored in this use of the attribute.

Reference: https://docs.microsoft.com/en-us/dynamics365/fin-ops-core/dev-itpro/dev-ref/xpp-attribute-classes

Question #38

HOTSPOT

You are a Dynamics 365 Finance and Operations developer.

You have the following code: (Line numbers are included for reference only.)

You need to evaluate the code.

What is the correct output for the method? To answer, select the appropriate option in the answer area. NOTE: Each correct selection is worth one point.

Reveal Solution Hide Solution

Correct Answer:

Explanation:

Box 1: One, Two, Four, Fire

The statements in the finally clause are executed when control leaves the try block, either normally or through an exception.

Box 2: One, Three, Four, Five

Box 3: One, Three

Return ends the call.

Box 4: One, Three, One, Two, Four, Five

Retry restarts the try statement.

Reference: https://docs.microsoft.com/en-us/dynamics365/fin-ops-core/dev-itpro/dev-ref/xpp-exceptions


Question #39

DRAG DROP

You are a Dynamics 365 Finance developer for a company that sells pre-owned vehicles. When the company acquires a new vehicle, vehicle identification (VIN) numbers are added to the VIN field in the CustTable.

You need to create an event handler to validate that new VIN values are at least 10 characters long.

Validation must occur when records are saved.

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: Copy the validatingWrite event handler on the CustTable object (it is either validatingWrite or validatedWrite, there is no such option as validateWrite).

Step 2: Add the event handler method to a class.

Step 3: Add code to perform the validation.


Question #40

HOTSPOT

You are a Dynamics 365 Finance and Operations developer.

You have the following code: (Line numbers are created for reference only.)

Which values does the info () method return? To answer, select the appropriate option in the answer area. NOTE: Each correct selection is worth one point.

Reveal Solution Hide Solution

Correct Answer:

Explanation:

Box 1: SID1234

Parameters

All methods have their own scope. A method can take one or more parameters. Within the scope of the method, these parameters are treated as local variables and are initialized with a value from the parameter in the method call. All parameters are passed by value, which means that you can’t change the value of the original variable. You can change only the local variable in the method. This local variable is a copy of the original variable.

Box 2: 5

Reference: https://docs.microsoft.com/en-us/dynamics365/fin-ops-core/dev-itpro/dev-ref/xpp-classes-methods


Question #41

HOTSPOT

You have a Dynamics 365 Finance and Operations environment.

You have the following code: (Line numbers are included for reference only.)

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: Yes

Class extension – Method wrapping and Chain of Command. The functionality for class extension, or class augmentation, has been improved. You can now wrap logic around methods that are defined in the base class that you’re augmenting. You can extend the logic of public and protected methods without having to use event handlers. When you wrap a method, you can also access public and protected methods, and variables of the base class. In this way, you can start transactions and easily manage state variables that are associated with your class.

Box 2: Yes

In the following example, the wrapper around doSomething and the required use of the next keyword create a Chain of Command (CoC) for the method. CoC is a design pattern where a request is handled by a series of receivers. The pattern supports loose coupling of the sender and the receivers [ExtensionOf(classStr(BusinessLogic1))]

final class BusinessLogic1_Extension

{

str doSomething(int arg)

{

// Part 1

var s = next doSomething(arg + 4);

// Part 2

return s;

}

}

Box 3: Yes

Instance and static methods can be wrapped by extension classes. If a static method is the target that will be wrapped, the method in the extension must be qualified by using the static keyword.

Box 4: No

Wrapper methods must always call next.

Note: Wrapper methods in an extension class must always call next, so that the next method in the chain and, finally, the original implementation are always called. This restriction helps guarantee that every method in the chain contributes to the result.

In the current implementation of this restriction, the call to next must be in the first-level statements in the method body.

Here are some important rules:

– Calls to next can’t be done conditionally inside an if statement.

– Calls to next can’t be done in while, do-while, or for loop statements.

– A next statement can’t be preceded by a return statement.

– Because logical expressions are optimized, calls to next can’t occur in logical expressions. At runtime, the execution of the complete expression isn’t guaranteed.

Reference: https://docs.microsoft.com/en-us/dynamics365/fin-ops-core/dev-itpro/extensibility/method-wrapping-coc


Question #42

You are a Dynamics 365 Finance developer.

You have a table named FMVehicle that contains a field named Vehicleld. The table has a clustered index named Vehicleldldx on the Vehicleld field. You declare a table buffer named vehicle to refer to the table.

You need to select all records from the FMVehicle table in ascending order based on Vehicleld field in the vehicle variable.

Which embedded-SQL statement should you use?

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

Reveal Solution Hide Solution

Correct Answer: C
Question #43

HOTSPOT

You have 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: Yes

Add 1 to a date adds one day.

Box 2: No

You cannot do a real2int conversion on a Date.

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


Question #44

You are a Dynamics 365 Supply Chain Management developer.

You are working on a project by using Visual Studio.

Several users check out a custom form version control and modify the form.

You need to find the user that has added a specific line of code to the form.

What should you do?

  • A . Open the object in Object Designer, select the title of the object, and then right-click View History.
  • B . In Solution Explorer, navigate to the object and right-click View History.
  • C . Using Visual Studio, navigate to the object. Add the object to a new solution, and then right-click View History.
  • D . Using Visual Studio, navigate to the object in Application Explorer and right-click View History.

Reveal Solution Hide Solution

Correct Answer: D
D

Explanation:

In Visual Studio, Go to source control explorer > Select the object > right click > View history

Reference: https://dynamicsuser.net/ax/f/developers/93354/how-to-rollback-a-change-set-completely-automatically-in-tfs

Question #45

A company has an extension that makes changes to a base form.

You need to identify all extension changes made to the base form.

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 . Right-click the base form and select view references
  • B . In search bar on the form extension element, enter the text e:
  • C . In the search bar on the base form, enter the text e:.
  • D . In the search bar on the form extension element, enter the text c:
  • E . In the search bar on the base form, enter the text c:.

Reveal Solution Hide Solution

Correct Answer: AB
AB

Explanation:

A: Customization and Extension

B: Example: Navigate to FMRental.Extension in the Tree Designer



Question #45

A company has an extension that makes changes to a base form.

You need to identify all extension changes made to the base form.

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 . Right-click the base form and select view references
  • B . In search bar on the form extension element, enter the text e:
  • C . In the search bar on the base form, enter the text e:.
  • D . In the search bar on the form extension element, enter the text c:
  • E . In the search bar on the base form, enter the text c:.

Reveal Solution Hide Solution

Correct Answer: AB
AB

Explanation:

A: Customization and Extension

B: Example: Navigate to FMRental.Extension in the Tree Designer



Question #45

A company has an extension that makes changes to a base form.

You need to identify all extension changes made to the base form.

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 . Right-click the base form and select view references
  • B . In search bar on the form extension element, enter the text e:
  • C . In the search bar on the base form, enter the text e:.
  • D . In the search bar on the form extension element, enter the text c:
  • E . In the search bar on the base form, enter the text c:.

Reveal Solution Hide Solution

Correct Answer: AB
AB

Explanation:

A: Customization and Extension

B: Example: Navigate to FMRental.Extension in the Tree Designer



Question #45

A company has an extension that makes changes to a base form.

You need to identify all extension changes made to the base form.

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 . Right-click the base form and select view references
  • B . In search bar on the form extension element, enter the text e:
  • C . In the search bar on the base form, enter the text e:.
  • D . In the search bar on the form extension element, enter the text c:
  • E . In the search bar on the base form, enter the text c:.

Reveal Solution Hide Solution

Correct Answer: AB
AB

Explanation:

A: Customization and Extension

B: Example: Navigate to FMRental.Extension in the Tree Designer



Question #49

You are a Dynamics 365 Finance developer. You have a virtual machine that includes Visual Studio. You need to display the elements by model.

What should you do?

  • A . Select Metadata Search from the Dynamics 365 menu.
  • B . Select Model Management from the menu and then select View all package dependencies
  • C . Right-click the Application Object Tree (AOT) node in Application Explorer and select Model View.
  • D . Select Model Management from the menu and then select Refresh Models.

Reveal Solution Hide Solution

Correct Answer: C
C

Explanation:

✑ In Microsoft Visual Studio, on the Dynamics 365 menu, click Model Management > Refresh Models.

✑ Open Application Explorer by clicking View > Application Explorer.

✑ Right-click the AOT root node, and then click Model view.

A list of installed models is displayed.

Reference: https://docs.microsoft.com/en-us/dynamics365/fin-ops-core/dev-itpro/dev-tools/manage-runtime-packages

Question #50

You are a Dynamics 365 Finance developer. You are testing a workflow in a user acceptance testing environment. You need to ensure that a specific user can accept purchase requisitions only if the requisition is in a specific status.

Which two options can you configure to achieve the goal? Each correct answer presents a complete solution. NOTE: Each correct selection is worth one point.

  • A . conditional decision
  • B . approval process
  • C . manual task
  • D . manual decision
  • E . automated task

Reveal Solution Hide Solution

Correct Answer: AB
AB

Explanation:

Reference: https://docs.microsoft.com/en-sg/dynamics365/fin-ops-core/fin-ops/organization-administration/configure-conditional-decision-workflow

Question #51

You are using the SysTest framework to test code in Visual Studio.

You need to create a unit test class.

Which three attributes can you use to create the class? Each correct answer presents a complete solution. NOTE: Each correct selection is worth one point.

  • A . Test Property
  • B . EntryPoint
  • C . Owner
  • D . Priority
  • E . TestFilter

Reveal Solution Hide Solution

Correct Answer: ACD
ACD

Explanation:

The SysTest framework now supports the major test attributes in the adaptor to be on par with the MSTest framework adaptor. This includes attributes like Category, Owner, Priority, and Test Property.

Note:

The Priority attribute SysTestPriority, which requires an integer value, is now available. A priority can only be specified once, but is supported on both the class and method level, with method level taking precedence over class level.

The Owner attribute, SysTestOwner, has also been added. This attribute was technically already supported for filtering in the Test Toolbox window, but the attribute itself was missing in X++. Similar to Priority, an owner can only be specified once and is supported on both the class and method level, with the method level taking precedence.

SysTestProperty specifies a property and a value (two strings), and can now be used in the Test Toolbox window in Visual Studio. Test Property can be specified multiple times, and can exist on both the class and method level.

Reference: https://docs.microsoft.com/en-us/dynamics365/fin-ops-core/dev-itpro/perf-test/systest-filtering

Question #52

DRAG DROP

A company has a Dynamics 365 Finance and Operations environment.

You need to implement indices for new tables.

Which types of indexes should you use? To answer, drag the appropriate types of indexes to the correct requirements. Each type of index 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: Primary

Box 2: Clustered

A clustered index is a special type of index that reorders the way records in the table are physically stored.

Box 3: Non-clustered

Reference: https://docs.microsoft.com/en-us/sql/relational-databases/indexes/clustered-and-nonclustered-indexes-described


Question #53

You are a Dynamics 365 Finance developer. You have a solution that records product weights. You must store up to four decimals of precision by using a standard Extended Data Type (EDT). You need to add the field in a new table.

Which EDT should you extend?

  • A . Weight
  • B . MarkupValue
  • C . WeightBase
  • D . AmountMST

Reveal Solution Hide Solution

Correct Answer: C
C

Explanation:

Weight data can be maintained with a maximum of two decimals by default. If you require the ability to enter, maintain, and view weight data with a maximum precision of six decimals, you must extend the decimal point precision for the WeightBase extended data type.

Reference: https://docs.microsoft.com/en-us/dynamics365/fin-ops-core/dev-itpro/extensibility/decimal-point-precision

Question #54

You are working with extended data types in Visual Studio.

You need to create an extension of an Extended Data Types (EDT) that is derived from base data types.

Which three properties can be modified? Each correct answer presents a complete solution. NOTE: Each correct selection is worth one point.

  • A . Label
  • B . String size
  • C . Alignment
  • D . IsExtensible
  • E . Form help

Reveal Solution Hide Solution

Correct Answer: ABE
ABE

Explanation:

String size can be defined only on root EDTs. The system will use the largest value that is defined across the EDT and its extensions.

Labels and Help text properties can be changed by an extension, but only one value can remain.

Reference: https://docs.microsoft.com/en-us/dynamics365/fin-ops-core/dev-itpro/extensibility/extensible-edts

Question #55

You are a Dynamics 365 Finance developer. You need to create an extension class.

Which action should you perform?

  • A . Add the class buffer as the first parameter.
  • B . Mark the class as final.
  • C . Mark the class as public.
  • D . Mark the class as protected.

Reveal Solution Hide Solution

Correct Answer: B
B

Explanation:

Reference: https://docs.microsoft.com/en-us/dynamics365/fin-ops-core/dev-itpro/extensibility/method-wrapping-coc

Question #56

You have a table in which multiple properties must be changed. Multiple table properties are locked down at the base table and must not be overwritten.

You need to modify the table properties by extending the table.

Which table property can you populate in a table extension by using the property sheet?

  • A . Created by
  • B . Table group
  • C . Configuration key
  • D . Clustered index

Reveal Solution Hide Solution

Correct Answer: A
A

Explanation:

You can now modify the following properties through the property sheet:

✑ Created By

✑ Created Date Time

✑ Modified By

✑ Modified Date Time

✑ Country Region Codes

Reference: https://docs.microsoft.com/sv-se/dynamics365/fin-ops-core/dev-itpro/extensibility/modify-properties

Question #57

HOTSPOT

You have the following class definition:

You need to create an extension class and create a new static method in it that converts miles to kilometers and then call the method from another class.

How should you complete the code and call the method? 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: final class CustUnitConv_Extension

Box 2: var km = UnitConv::miToKm(62.1371);

Reference: https://docs.microsoft.com/en-us/dynamics365/fin-ops-core/dev-itpro/extensibility/method-wrapping-coc


Question #58

You are creating a new form in Visual Studio.

You need to apply the Simple List pattern and apply the pattern to a form.

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

  • A . Use the Application Object Tree (AOT).
  • B . Use the designer.
  • C . Use form statistics.
  • D . Use metadata properties.

Reveal Solution Hide Solution

Correct Answer: B, C
Question #59

DRAG DROP

A company plans to deploy Dynamics 365 Unified Operations.

You need to recommend deployment options for the company.

What should you recommend? To answer, drag the appropriate deployment options to the correct application requirement. Each deployment option 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:

Reference: https://docs.microsoft.com/en-us/dynamics365/fin-ops-core/fin-ops/get-started/cloud-prem-comparison


Question #60

You are a Dynamics 365 Finance developer.

You have a form that displays customer records by using a listpage control. You must add related sales total information for the selected customer to the form.

You need to display the required related sales total information.

What should you add to the form?

  • A . a quick filter
  • B . a factbox
  • C . an external feed
  • D . a tile
  • E . a custom lookup

Reveal Solution Hide Solution

Correct Answer: B
B

Explanation:

A list page presents a set of data on a user interface that is optimized so that you can browse records, find the right record, and then take an action upon that record. The list page lets the user search, filter, and sort the data. FactBoxes on the right side of the grid show related data for the active record.

Reference: https://docs.microsoft.com/en-us/dynamics365/fin-ops-core/dev-itpro/user-interface/list-page-form-pattern

Question #61

You are developing a customization for Dynamics 365 Finance.

The customization must extend objects from the Application Foundation package.

You need to create and configure a new model for the customization.

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 new model that builds into its own separate assembly.
  • B . Reference the Application Foundation package when creating the extension model.
  • C . Create a new model that is part of an existing package.
  • D . Assign the model to the USR layer.
  • E . Create an extension class that references the Application Foundation.

Reveal Solution Hide Solution

Correct Answer: A, E
A, E

Explanation:

Reference:

https://docs.microsoft.com/en-us/dynamics365/fin-ops-core/dev-itpro/extensibility/class-extensions

https://docs.microsoft.com/en-us/dynamics365/fin-ops-core/dev-itpro/dev-tools/model-split

Question #62

You need to prepare to deploy a software deployable package to a test environment.

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 . In Visual Studio, create a Dynamics 365 deployment package and upload the package to the as
  • B . In Azure DevOps, queue a build from the corresponding branch and upload the model to the asset library.
  • C . In Azure DevOps, queue a build from the corresponding branch and upload the package to the asset library.
  • D . In Visual Studio, export the project and upload the project to the asset library.

Reveal Solution Hide Solution

Correct Answer: D
D

Explanation:

Reference: https://marketplace.visualstudio.com/items?itemName=Dyn365FinOps.dynamics365-finops-tools

https://docs.microsoft.com/en-us/dynamics365/fin-ops-core/dev-itpro/deployment/create-apply-deployable-package

Question #63

DRAG DROP

You are configuring your developer environment by using Team Explorer.

There are several developers working on a customization.

You need to ensure that all code is checked in and then merged to the appropriate branches.

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

Explanation:

Reference: https://docs.microsoft.com/en-us/azure/devops/repos/tfvc/branching-strategies-with-tfvc?view=azure-devops


Question #64

HOTSPOT

You have a Dynamics 365 Finance and Operations development environment.

You must add default filters to the fleet management form. You must view only sales that occur in the current sales period and where the Customer name field contains the next Wholesales.

You need to configure filtering.

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:


Question #65

HOTSPOT

You are a Dynamics 365 Finance and Operations developer.

Users are experiencing slower load times for the All Customers form.

You need to update caching for CustTable to improve data retrieval times.

How should you configure CacheLookup properties? 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: Entire table

In Microsoft Dynamics AX, groups of records can be cached all at once with set-based caching.

Set-based caching can be implemented in two ways:

At design time, by setting the table’s CacheLookup property to EntireTable.

In code, by using the RecordViewCache class.

Box 2: Found

✑ Record caching is enabled for a table when all the following statements are true:

✑ The CacheLookup property on the table is enabled by setting it to one of the following values:

✑ NotInTTS, Found, FoundAndEmpty.

✑ The record buffer disableCache method has not been called with a parameter of true.

Reference:

https://docs.microsoft.com/en-us/dynamicsax-2012/developer/set-based-caching

https://docs.microsoft.com/en-us/dynamicsax-2012/developer/single-record-caching


Question #66

Contoso. Ltd. uses Dynamics 365 Finance. You receive reports of performance issues with the app. You need to use Performance Timer to investigate the issues.

Which URL should you use?

  • A . https://contoso.cloudax.dynamics.com/?cmp=USMF&debug=perftimer
  • B . https://contoso.cloudax.dynamics.com/?cmp=USMF&debug=develop&mi=VendTableListPage
  • C . https://contoso.cloudax.dynamics.com/?cmp=USMF&mi=performancetimer
  • D . https://contoso.cloudax.dynamics.com/?cmp=USMF=debug=developer

Reveal Solution Hide Solution

Correct Answer: B
B

Explanation:

https://docs.microsoft.com/en-us/dynamics365/fin-ops-core/dev-itpro/perf-test/performance-timer

Question #67

HOTSPOT

You are a Dynamics 365 Finance and Operations developer.

You need to monitor system performance.

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

Reveal Solution Hide Solution

Correct Answer:

Explanation:

Box 1: LCS Environment Monitoring tool

Microsoft Dynamics Lifecycle Services (LCS) provides to help you monitor, diagnose, and analyze the health of the Finance and Operations environments that you manage.

Box 2: Trace Parser

You can use the Trace parser to consume traces and analyze performance in your deployment.

Box 3: SQL Profiler

Incorrect Answers:

Fiddler:

Fiddler can help in different ways with Dynamics 365 troubleshooting, including determine what errors are being reported, and by speeding up the JavaScript development process.

Reference: https://docs.microsoft.com/en-us/dynamics365/fin-ops-core/dev-itpro/lifecycle-services/monitoring-diagnostics


Question #68

DRAG DROP

A company uses Dynamics 365 Unified Operations.

You need to implement role-based security for a set of fields in a table.

How should you arrange the security elements? To answer, drag the appropriate security elements to the correct locations. Each element 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:

The following illustration shows the elements of role-based security and their relationships.

Reference: https://docs.microsoft.com/en-us/dynamics365/fin-ops-core/dev-itpro/sysadmin/role-based-security


Question #69

DRAG DROP

You are a Dynamics 365 Finance and Operations developer.

You need to use the Extensible Data Security (SDS) framework to restrict to the data in the Sales table form based on the customer group and the role of the user.

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.

Reveal Solution Hide Solution

Correct Answer:

Explanation:

Step 1: Create a new user role and add required privileges.

Individual security permissions are combined into privileges, and privileges are combined into duties. The administrator grants security roles access to the program by assigning duties and privileges to those roles.

Step 2: Assign the newly created role to the user.

Step 3: Define the list of constrained tables.

Add the constrained tables and views.

Step 4: Define the context of the rule.

Set the context.

Set the ContextType property to one of the following:

✑ ContextString C Set the property to this value if a global context is to be used to determine whether the policy should be applied. When required, this context string needs to be set by the application using the XDS::SetContext API.

✑ RoleName C Set the property to this value if the policy should be applied only if a user in a specific role accesses the constrained tables.

✑ RoleProperty C Set the property to this value if the policy is to be applied only if the user is a member of any one of a set of roles that have the ContextString property set to the same value.

Reference:

https://docs.microsoft.com/en-us/dynamics365/fin-ops-core/dev-itpro/sysadmin/security-architecture

https://community.dynamics.com/365/b/exploringdynamics365/posts/extensible-data-security-in-d365


Question #70

You are Dynamics 36S Finance developer.

You need to explain the performance advantages of the different concurrency models.

What are three performance advantages of optimistic concurrency control over pessimistic

concurrency control? Each correct answer presents a complete solution. NOTE: Each correct selection is worth one point.

  • A . One record cannot be selected for update by two different processes at the same time.
  • B . Records are locked as soon as they are retrieved from the database.
  • C . Records are locked for a shorter length of time.
  • D . Fewer resources are used to lock records during updates.
  • E . Records remain available for other processes while they are selected from the database.

Reveal Solution Hide Solution

Correct Answer: CDE
CDE

Explanation:

Optimistic Concurrency only locks records from the time when the actual update is performed.

Following are the advantages of using OCC:

Records remain available for other processes to update if they have been selected from the database but haven’t yet been updated.

Records are locked for a shorter length of time.

Fewer resources are used to hold the locks during the update process.

Reference: https://docs.microsoft.com/en-us/dynamicsax-2012/developer/optimistic-concurrency-control

Question #71

DRAG DROP

You are a Dynamics 365 Finance and Operations developer.

You have a report in an existing model that connects with the following objects:

✑ in-memory table

✑ data provider class

✑ controller class

✑ contract class

The report is locked for modifications.

You need to create an extension of the in-memory table in a model and you add the new field to the extension.

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

You are a Dynamics 365 Finance developer.

You need to deploy a new report in a developer environment.

From which two locations can you deploy the report? Each correct answer presents a complete solution. NOTE: Each correct selection is worth one point.

  • A . Application Explorer
  • B . Package deployment
  • C . Solution Explorer
  • D . Build Model option
  • E . Build project

Reveal Solution Hide Solution

Correct Answer: BC
Question #73

HOTSPOT

You are creating a Dynamics 365 Finance and Operations report. You cannot query the data for the report directly.

You must include parameters to specify data for the report.

You need to create the report.

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: Data contract class

A data contract class defines the parameters for a report that is bound to a report data provider (RDP) class. You can specify one or more groups of report parameters, the order of the groups, and the order in which the report parameters appear in a print dialog box.

Box 2: Report data provider class

Report data provider class C processes business logic based on parameters and a query, and then returns the tables as a dataset for the report.

Box 3: DataContractAttribute

DataContractAttribute C This attribute is applied to an X++ class and specifies that the class can be

used as a data contract (that it should be serialized).

Box 4: DataMemberAttribute

DataMemberAttribute C This attribute is applied to a parm (parameter) method on an X++ data contract class and specifies that the data member should be serialized.

Box 5: SRSReportParameterAttribute

You set the SRSReportParameterAttribute attribute to the data contract you created for the RDP class.

Reference: https://docs.microsoft.com/en-us/dynamicsax-2012/appuser-itpro/how-to-use-a-report-data-provider-class-in-a-report


Question #74

DRAG DROP

You are a Dynamics 365 Finance and Operations developer.

The sales department manager must to be able to view total customers by region and total sales by regions.

You need to build key performance indicators (KPIs) and display them on a tile in the application.

How should you model the KPI? To answer, drag the appropriate objects to the correct KPI components. Each object 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:

Agg M – Agg Dim – Agg Dim


Question #75

You are Dynamics 365 Finance developer.

You need to initialize an embedded Microsoft Power Bl report.

Which code segment should you add to the form initialization method?

  • A . addReportControl(formGroupControl)
  • B . initializeReportControlInternal(powerBIConfiguration, reportparameters, reportControl, showError)
  • C . InitializeReportControl(workspaceName, Formgroup)
  • D . deployorUpdateReport(powerBIConfiguration, reportName, resourceName)

Reveal Solution Hide Solution

Correct Answer: B
B

Explanation:

PBIReportHelper.initializeReportControl method is used to embed a Power BI report (.pbix resource) in a form group control.

Reference: https://docs.microsoft.com/en-us/dynamics365/fin-ops-core/dev-itpro/analytics/add-analytics-tab-workspaces?toc=%2Ffin-and-ops%2Ftoc.json

Question #76

You are a Dynamics 365 Finance developer. You create a key performance indicator (KPI) in a development environment. You need to display the KPI.

What should you do?

  • A . Add the KPI to an existing form.
  • B . Create a tile and add the KPI to the tile.
  • C . Create a new workspace and add the KPI to the workspace.

Reveal Solution Hide Solution

Correct Answer: C
C

Explanation:

KPIs and aggregate data that are shown on the dashboard, or a workspace, can be secured by using menu items.

Reference: https://docs.microsoft.com/en-us/dynamics365/fin-ops-core/dev-itpro/analytics/model-aggregate-data

Question #77

You are training a new Dynamics 365 Finance developer.

You need to recommend where asynchronous integrations should be used instead of synchronous integrations.

For which scenario should you recommend asynchronous integration?

  • A . When products are updated in Finance and Operations, a third-party application that contains the same product information needs to also be updated in near real-time.
  • B . A company uses an on-premises inventory management system that needs to receive sales order data every hour throughout the day.
  • C . A company uses workflow for purchasing approvals, which then sends just-in-time approval information to a third-party application for approvers to review.
  • D . A manufacturer wants to move production data from an on-premises deployment Dynamics 365 Finance in near real-time.

Reveal Solution Hide Solution

Correct Answer: B
B

Explanation:

Reference: https://docs.microsoft.com/en-us/dynamics365/fin-ops-core/dev-itpro/data-entities/integration-overview

Question #78

DRAG DROP

A company uses Dynamics 365 Unified Operations.

Client companies require weekly updates for services performed. You create data entity by using the Data Entity wizard.

You need to expose a list of services to external business companies.

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: Synchronize the database

Entities are created as views in Microsoft SQL Server, and staging tables are also added. Therefore, you must sync a database when you build entities.

Step 2: Build the solution

Build your project

In Solution Explorer, right-click your project, and then click Properties.

Change the value of the Synchronize database on build property to True, and then click OK. This property must be set only one time per project.

On the Visual Studio toolbar, click Build > Build Solution to build the project.

Step 3: Configure properties for the data entity

After build visually validate and customize an entity

Reference: https://docs.microsoft.com/en-us/dynamics365/fin-ops-core/dev-itpro/data-entities/build-consuming-data-entities


Question #79

DRAG DROP

A company uses Dynamics 365 Unified Operations.

You need to integrate the system with third-party applications.

Which data integration strategies should you use? To answer, drag the appropriate data integration strategies to the correct scenarios. Each strategy 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: custom service

Custom service peak data volume is 1,000 records per hour.

Box 2: batch data API

This scenario is best implemented by using batch data APIs, which has a peak data volume of 300,000 records per hour.

Box 3: OData endpoint

Peak data volume for reading Odata status of orders is 5,000 records per hour.

This scenario is best implemented by using the OData service endpoints to read order status information.

Reference: https://docs.microsoft.com/en-us/dynamics365/fin-ops-core/dev-itpro/data-entities/integration-overview


Question #80

HOTSPOT

You are creating entities that will have unmapped fields.

You need determine which types of unmapped fields to use.

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

Box 1: Computed

Computed field: Value is generated by an SQL view computed column.

During read, data is computed by SQL and is fetched directly from the view.

Box 2: Computed

Box 3: Virtual

Virtual field:

Is a non-persisted field.

Is controlled by custom X++ code.

Read and write happens through custom X++ code.

Virtual fields are typically used for intake values that are calculated by using X++ code and can’t be replaced by computed columns.

Box 4: Virtual

Virtual field is a non-persisted field.

Reference: https://docs.microsoft.com/en-us/dynamics365/fin-ops-core/dev-itpro/data-entities/data-entity-computed-columns-virtual-fields


Question #81

DRAG DROP

A company is migrating from a legacy system to Dynamics 365 Unified Operations.

You need to import the customer data by using the Data Management workspace.

In which order should you perform the actions? 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: Create a new import project.

Step 2: Specify the project category for the import.

Step 3: Specify the Source Data Format.

Step 4: Specify the target entity.

Step 5: Import the source file to the project.

The import process is done through the Import tile in the Data Management workspace.

Import a data package

✑ Log into the environment using a login with sufficient privileges (typically this is the Administrator role).

✑ On the dashboard, click the Data Management workspace.

✑ Click the Import tile.

✑ On the next page, do the following:

Provide a name.

In the Source Data Format field, select Package.

Click the Upload button and choose the appropriate package file from the location for the data being imported. This will import all the files from the package. Click Save, and then click Import.

Reference: https://docs.microsoft.com/en-us/dynamics365/fin-ops-core/dev-itpro/data-entities/data-entities-data-packages


Question #82

You are a Dynamics 365 Finance and Operations developer.

You need to create an extension class.

Which action should you perform?

  • A . Mark the class as final.
  • B . Add the suffix .extension to the file name.
  • C . Mark the class as protected.
  • D . Mark the class as private.

Reveal Solution Hide Solution

Correct Answer: A
A

Explanation:

Reference: https://docs.microsoft.com/en-us/dynamics365/fin-ops-core/dev-itpro/extensibility/method-wrapping-coc

Question #83

You are training a new Dynamics 365 Finance developer.

You need to explain the relationships between models, packages, and projects to the new hire.

Which three design concepts should you explain? Each correct answer presents a complete solution. NOTE: Each correct selection is worth one point.

  • A . A project can contain elements from multiple models.
  • B . A model is a group or collection of elements that constitute a distributable software solution.
  • C . A Visual Studio project can belong to more than one model.
  • D . A model is a design time concept.
  • E . A package is a deployment unit that may contain one or more models.

Reveal Solution Hide Solution

Correct Answer: BDE
BDE

Explanation:

B: A model is a group of elements, such as metadata and source files, that typically constitute a distributable software solution and includes customizations of an existing solution.

D: A model is a design-time concept, for example a warehouse management model or a project accounting model.

E: A package is a deployment and compilation unit of one or more models.

Reference: https://docs.microsoft.com/en-us/dynamics365/fin-ops-core/dev-itpro/dev-tools/models

Exit mobile version