Hello Experts,
How can I implement saving SSRS reports to a print archive after executing in batch mode?
I have implemented the Controller class as follows, but it is not saved to the print archive.
If it is not in batch mode, it is downloaded to the download folder, but it is not saved to the print archive.
Can you please guide me on how to implement it?
Thanks in advance.
class xx_myController extends SrsReportRunController implements BatchRetryable
{
public static void main(Args _args)
{
xx_myController controller;
controller = new xx_myController();
controller.parmArgs(_args);
controller.parmReportName(ssrsReportStr(xx_myReport, Report));
controller.parmDialogCaption("@xx:1231564");
controller.parmLoadFromSysLastValue(true);
controller.parmExecutionMode(SysOperationExecutionMode::Synchronous);
controller.parmShowDialog(true);
controller.startOperation();
}
}