In SQL Server Reporting Services
, I was able to make a report that accessed SQL Server
via a stored procedure. In this stored procedure, I passed along a parameter and the stored procedure returned only data related to that parameter. This worked correctly.
Is it possible to, take that same parameter and pass it to another stored procedure so that 2 different reports on queried and returned at the same time, while being displayed on the same report?
For example:
Stored Procedure 1:
Parameter passed to Stored Procedure 1: OrderID
Returns Data 1
Stored Procedure 2:
Parameter passed to Stored Procedure 1: OrderID
Returns Data 2
Report:
Data1
Data2