Hi,
In my solution, I use to repeat parameter to deep report level (or drill-down). But in my main report, I don't expose all parameters for quickly view. So I use call {store_name} to present report, or separate to tabs.
select 'dbr.tab', 'Tab 1';
select 'dbr.tab', 'Tab 2';
call sp_DBR_tab_1('','','',param4); select 'dbr.tab.next';
call sp_DBR_tab_2('','','',param4);
select 'dbr.tab.close';
Now, I can't define parameter for linked report in tab_1 like below:
select 'dbr.report', 'sp_DBR_other_report', '[Col_Ref]', 'param1=(param1)', 'param2=(param2)', 'param3=(param3)';
Of course, I have some other solutions like add hidden columns, or direct value passing. But this make more code and maintain.
I wish we have parameter option like hidden parameter comes with default value. So now in my main report, I have param1, param2, param3 are hide and the solution above will work.
Nice to see if it's good and you have plan to accomplish this.
Thanks