MB6-894 Development, Extensions and Deployment for Microsoft Dynamics 365 for Finance and Operations

Loading demo links...

Showing 7–9 of 10 questions

Question 7

You are an Independent Software Vendor (ISV) developer working on a solution that extends the

Commerce Runtime (CRT) to handle new requests for an app deployed to tablets and cell phones.

You are in the developer topology and need to troubleshoot an error and check for events.

Under which event log in Event Viewer should you look to see the events?

Select an option, then click Submit answer.

  • Commerce-RetailServer

  • Commerce-OnlineStore

  • Commerce-LoggingProvider

  • Commerce-ModernPos

Question 8

You create a new class named NewClass1 in a model. NewClass1 manipulates the CustTable table in the protected method modifyCustTable.

NewClass1 has the following code:

class NewClass1

{

public static MainClass1 construct()

{

return new MainClass1();

}

protected void modifyCustTable()

{

...

}

}

In the same model as NewClass1, you create a new class named NewClass2. You want to run the code in

the modifyCustTable method from the callModifyCustTable method in NewClass2.

What is a correct example of calling the modifyCustTable method from NewClass2?

Select an option, then click Submit answer.

  • {
    public static NewClass2 construct()
    {
    return new NewClass2();
    }
    public void callModifyCustTable()
    {
    NewClass1 newClass1 = NewClass1::construct();
    newClass1.modifyCustTable();
    }
    }

  • class NewClass2
    {
    public static NewClass2 contsruct()
    {
    return new NewClass2();
    }
    public void classModifyCustTable()
    {
    newClass1.modifyCustTable();
    }
    }

  • class NewClass2 extends NewClass1
    {
    public static NewClass2 contsruct()
    {
    return new NewClass2();
    }
    public void callModifyCustTable()
    {
    this construct().modifyCustTable();
    }
    }

  • class NewClass2 extends NewClass1
    {
    public static NewClass2 construct()
    {
    return new NewClass2();
    }
    public void callModifyCustTable()
    {
    this.modifyCustTable();
    }
    }

Question 9

You need to troubleshoot an issue by using the Async sync library.

Where should you go to access this library?

Select an option, then click Submit answer.

  • Real Time Service

  • Reatil Server

  • Retail Modern POS

  • Channel Database