I have a report whose stored procedure name is sp_DBR_missing_contacts
and I coded it so that it displays a summary report and also displays a button.
The idea is that when the button is pressed it should display a detailed report.
I would like that after the button is pressed that both parts should display on the same page.
Currently when I press the button, the summary is replaced by the details.
Here is my summary report code
select 'dbr.button', 'Click for full report';
select 'dbr.report', 'sp_DBR_missing_contacts_details', 'clientdb=the_clientdb';
I know if I added a parameter new_window the details would display in a new tab/window but that is not what I want.
I would like the details grid to display below the summary section.
And an added bonus would be the scrollbars for each section could be separate.
Are these two things possible?
Thanks in advance.
p.s. I also just noticed another problem.
If I am not logged in on the portal as dba then the above button doesn't show up.