Hi All,
I have a query on how to print Report's Dynamic Parameters on your SSRS reports.
In then below screen shot of my parameter form, I would like to print the Date "2018-05-01".."2018-06-07" when my SSRS report generates.
How can I achieve this? I tried following blogpost http://dev.goshoom.net/en/2014/09/showing-dynamic-parameters/
Should I create tmpSysQuery variable and select the tmpSysQuery in my RDP class?
Looks like I have to create TmpSysQuery.rangesToTable method, should this be created as a totally new class?
A line tmpSysQuery = MyQueryUtils::rangesToTable(this.parmQuery()); is added in the process report class, should this be added in my process report class?
A Statement is mentioned in blog "add a new data set in our report and show query ranges in a tablix in exactly the same way" Should I create a new dataset in SSRS reports? Which RDP or Query should I attach? Since already my RDP class is attached, what should I attach for the new dataset?
Will be helpful if someone can brief me on the process of achieving this, as I feel I am missing something in the blog.