Hi Everyone,
I have added some fields for the SalesHeading Report and also written extension code for the salesHeadingController. the code shown below.
class SalesHeadingControllerExt extends SalesHeadingController
{
public static SalesHeadingControllerExt construct()
{
return new SalesHeadingControllerExt();
}
public static void main(Args _args)
{
SalesHeadingControllerExt controller = SalesHeadingControllerExt::construct();
controller.init(_args);
controller.parmReportName(ssrsReportStr(NS_SalesHeading, Report));
controller.startOperation();
}
}
the code build successfully but when I debug the code its not triggering. I'm trying to customise the following report.
I guess, when we select the sales order per customer(Menu Item), salesheading report will execute.
Please help me with the right approach.
Many thanks
Sheshu Nara