I have existing 5 SSRS reports each having a Summary and Detail RDL(Total 10). We are planning to consolidate all the summary reports into one. Detail will remain as it is. Currently, the detail procedure uses the Catalog table of the report server to determine what parameters user selected while in the summary report. Basically, from the catalog table it picks up Name of the report and user id to determine the parameters from the session.
Question: Since we are consolidating into one RDL, the report names won't be there anymore. Is there a way I can insert the Name dynamically through the code in Catalog table(report server db) depending on what parameter user has selected from the dropdown to open the report.
I am really stuck at this. Can anybody please help.
I am thinking of creating a new parameter in summary report and storing where condition dynamically depending on what parameter user has selected and then send the full parameter value to the detail procedure. This would remove the dependency on Catalog table. Any thoughts on this or any better way to it?