Question 26

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?
  • Question 27

    DRAG DROP
    You create a Visual Studio project named ProductUpdates.
    You must update data in a table named ProductTable. You must be able to run the code from Visual Studio.
    You need to create an X++ class.
    Which five 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.
    Select and Place:

    Question 28

    A company uses Dynamics 365 Finance.
    A user is unable to access the new Customer Credit Limit report.
    You need to configure security for the report.
    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.

    Question 29

    You are a Dynamics 365 Finance developer.
    You launch the Performance Timer tool to troubleshoot performance issues with a business process.
    You need to view the results from the tool.
    What does the tool present? To answer, select the appropriate options in the answer area.
    NOTE: Each correct selection is worth one point.

    Question 30

    A company is using a Dynamics 365 finance and operations app.
    The accounting department requests two custom fields named CusStatus and CusDiscount for the header of the sales invoice SSRS report The custom fields are in the SatesTable table.
    You create a duplicate of the report design and add the two new fields to a temporary table by using the following extension:

    You need to populate the new fields by using Chain of Command (CoQ
    Solution: Declare the SalesTable table on line 06 and insert a new line after line 06 to declare the SaleslnvoiceHeaderFooterTmp table ^Populate the new fields by using the custlnvoiceJour parameter with a reference to SalesTable Does the solution meet the goal?