Super() method in fetch in report microsoft dynamics Ax

Qus:- how to use Super() method in fetch methods microsoft dynamics Ax ?

Hi,

You can override the fetch method to filter the data that is displayed in a report. This override does not reduce the number of records that are returned by the query of the report. Instead it prevents some records from being sent to the final report. Each record is examined by the branching logic you add to the fetch method. Branching determines which records to give to the send method. Those records appear in the final report.

Note: Do not call super() when you override the fetch method in a report…

Never comment super() in fetch…

instead return it as true…

thanks chaitnya