[![enter image description here][1]][1]I have an SSRS 2017 report that consists of a main report and multiple sub reports. This report is published to the SSRS Portal, and then called by a web application. The report currently accepts one parameter from the web application, i.e. Case ID. My task is to allow the web application to pass multiple Case IDs, and the report will then be executed multiple times, each for a Case ID. If I pass multiple Case IDs to the main report, the outcome is that each sub report will be repeated multiple times. Let's say, I pass case ID 100 and 101 to the report, the outcome would be something like this: Sub-Report-A-Case-100, Sub-Report-A-Case-101, Sub-Report-B-Case-100, and Sub-Report-B-Case-101, so on and so forth. The ideal scenario would be Sub-Report-A-Case-100, Sub-Report-B-Case-100, Sub-Report-A-Case-101, etc. Since the report is called from a web application, I cannot use data-driven subscription features. What other options do I have?
Please advise. Thanks, Jay