I need to call a report viewer form multiple times with different parameters without user intervention. I need to do that from a stored procedure in on-premise Syteline version 10. Is there a way to do that?
I think what you are after is running a report several times, each time with a different set of input parameters (report options);
You can submit a report to Background queue using the standard sp BGTaskSubmitSp; for an example you can check InvPostingBGSp
BGTaskSubmitSp worked perfectly. That is exactly what I needed. Thank you so much.
I will try that. Thank you