Is this possible without editing subscription table and SSRS SQL Job?
Let say I have a report that takes one parameter. The parameter1 is either EAST and WEST. SO I want to create ONE subscription that will programmatically run the report (in this case two times, because I have two possible option in the parameter)
Let say I have a select statement that output
EAST
WEST
I am wondering if I can use a built in SSRS tool and take that output to run the report (in this case two because there are two possible EAST and WEST)
one will run with parameter set to EAST and a second run with parameter set to WEST
I simplify my problem to better explain. In reality I have 50 possible option in parameter1. but I don't want to create 50 subscription.
I know I can alter the SQL job and altering the parameter back door. but I am wondering if there is a more elegant solution (built in)
I know I can also can do this with R-TAG and such But I am looking is SSRS 2016 can do this out of the box?
I am using SQL 2016 and SSRS 2016 THX
My clunky solution to this.
create a while loop and update Subscriptions table and set the parameter within the loop
update Subscriptions
set Parameters = 'Location' + @t2 + 'Month12'
where SubscriptionID = @SBidEventData
set @bool1 = ISNULL((select eventdata from event where eventdata = @SBidEventData), '')
while @bool1 <> ''
begin
set @bool1 = ISNULL((select eventdata from event where eventdata = @SBidEventData), '')
if @bool1 = ''
begin
-- SET PATH AND PARAMETER TO THE WAY IT WAS
WAITFOR DELAY '000:00:07'
update Subscriptions
set Parameters = 'LocationWest'
where SubscriptionID = @SBidEventData
end
end