Question 72 of 103 from exam MB-500: Microsoft Dynamics 365: Finance and Operations Apps Developer

Question 72 of 103 from exam MB-500: Microsoft Dynamics 365: Finance and Operations Apps Developer

Question

HOTSPOT - You are creating a Dynamics 365 Finance 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.

Hot Area:

Answer Area

Which type of class should you create to pass parameters
to the report?

Which type of class should you create to access and process
the data for the report?

Which attribute should you use to identify the class that
defines report variables?

Which attribute should you use to identify parm methods
to send data for the report?

Which attribute should you use to define the contract class
for a provider class?

Data contract class
Report data provider class
Report controller class
Report UI builder class

Data contract class
Report data provider class
Report controller class
Report UI builder class

DataContractAttribute
DataMemberAttribute
SysOperationContractProcessingAttribute
SysOperationGroupattribute

DataContractAttribute
DataMemberAttribute
SysOperationContractProcessingAttribute
SysOperationGroupAttribute

SRSReportQueryAttribute
SRSReportParameterAttribute
SRSReportDataProviderBase

Explanations

Answer Area

Which type of class should you create to pass parameters
to the report?

Which type of class should you create to access and process
the data for the report?

Which attribute should you use to identify the class that
defines report variables?

Which attribute should you use to identify parm methods
to send data for the report?

Which attribute should you use to define the contract class
for a provider class?

Data contract class
Report data provider class
Report controller class
Report UI builder class

Data contract class
Report data provider class
Report controller class
Report UI builder class

DataContractAttribute
DataMemberAttribute
SysOperationContractProcessingAttribute
SysOperationGroupattribute

DataContractAttribute
DataMemberAttribute
SysOperationContractProcessingAttribute
SysOperationGroupattribute

SRSReportQueryAttribute
SRSReportParameterAttribute
SRSReportDataProviderBase

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 " processes business logic based on parameters and a query, and then returns the tables as a dataset for the report.

Box 3: DataContractAttribute - DataContractAttribute " 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 " 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.

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