Hello -
I am currently connecting to a URL that is serving CSV data in order to bring data into a report. The URL looks something like like this :
http://www.myreportdata.com?orgId=1234
In order to specify the data that I would like to load, I would love to be able to change this URL to something like this :
http://www.myreportdata.com?orgId=1234&date=7-5-2017
or this:
http://www.myreportdata.com?orgId=1234&date=7-10-2017
based an a parameter in the report. I am using the Angular 4 viewer to view all reports. It seems like this might not be possible, to change the DataSource Uri based on a report parameter, I was hoping that I could assign the DataSource to something like this:
http://www.myreportdata.com?orgId=1234&date=[Report.Parameters.Date.Value] in order to accomplish this task, but I can't get anything to work that way. It seems maybe the other alternative would be to add a custom report resolver to my Report Server, but I was hoping for a simpler solution. So my question is two-fold.
1. Is there any way to accomplish this goal SIMPLY and without using a Custom Report Resolver?
2. If not, are there any great documents on implementing a Custom Report Resolver when using Report server?
Thanks much for any assistance.
- Chris