My problem is that I need Ad-Hoc reports with variable queries and variable content/columns/etc. customized and saved per user and I don't have a solution yet.
I have an MVC 4 C# application with a SQL Server database and I have SSRS available.
I'm looking at displaying reports using the visual studio report viewer.
This is a simple example of putting the reportViewer into an MVC application on a web forms page.
The report viewer can show different reports by changing the reportViewer's source dataset, ReportPath and ReportServerURL
In code, I see examples like this where I can override the dataset and path to the RDLC file, but what I would like to do is just pass a dynamically generated dataset and RDLC file to the viewer. This would give me the flexibility to build and save the user's report template in the database, and then just recall it and run the report.
Is this possible, or am I barking up the wrong tree?