Guillaume
2010-09-29 08:42:03 UTC
How can i set the "Print Grand Total" Flag in a Runbase Report over X++ Code?
The Flag can be found on Reportdialog "Select" --> Tab Print Options -->
Print Grand Total.
Thanks to a previous post, I found that :
- - - - - - - - - - - - - - - - - - - - - - - - - - - -
reportRun.printGrandTotal(true);
"reportRun" is a membervariable of the class RunBaseReport.
- - - - - - - - - - - - - - - - - - - - - - - - - - - -
So, in the report, my init method :
________________________________
SysReportRun _sysReportRun
;
super();
_sysReportRun = element;
_sysReportRun.printGrandTotal(true);
________________________________
But unfortunately that doesn't work...
Who can help me?
Thanks by advance,
Guillaume
The Flag can be found on Reportdialog "Select" --> Tab Print Options -->
Print Grand Total.
Thanks to a previous post, I found that :
- - - - - - - - - - - - - - - - - - - - - - - - - - - -
reportRun.printGrandTotal(true);
"reportRun" is a membervariable of the class RunBaseReport.
- - - - - - - - - - - - - - - - - - - - - - - - - - - -
So, in the report, my init method :
________________________________
SysReportRun _sysReportRun
;
super();
_sysReportRun = element;
_sysReportRun.printGrandTotal(true);
________________________________
But unfortunately that doesn't work...
Who can help me?
Thanks by advance,
Guillaume