Reputation: 13
Is there any way to execute and download the report on jasperserver through single url ? I am able to login and open the report url and pass the parameters, all is set but i need to execute it and download it in excel format.
Do I need to pass some more parameters ? Or some other way is there ?
Upvotes: 1
Views: 1094
Reputation: 133
Append "&output=excel" in your report URL for downloading it in Excel format.
For Example:
Use this URL:
http://jasperserver_url.com/jasperserver/flow.html?_flowId=viewReportFlow&j_username=username&j_password=password&ParentFolderUri=%2FReports&reportUnit=%2FReports%2FMy_Report¶meter1=param1&decorate=no&output=excel
Upvotes: 1