We use SSRS for reporting and it is pulling from SQL.
I have apps that are tied to the SQL Tables to view data in the app. Mine have the capability to view only for SQL.
If you are wanting a button or something that takes you directly to SQL you could do that by simply using Launch()
So you would have a button that the OnSelect is Launch("Location of SSRS report"). You pass variables when doing a launch but you would have to work them into your code in the launch.
Typically when passing information it is something that is found in the URL to work but SQL doesn't do normally (ours don't anyhow).
For example you could have Launch("http://YOURDATA/reports/report/YOURDATA/Public/PO%20by%20Job" )
would take you to a specific report but you could have on a selection in the screen that says "PO By Job" the OnSelect be Set(varReport, "PO%20by%20Job") and then the Launch could be:
Launch(Text("http://YOURDATA/reports/report/YOURDATA/Public/" & varReport))
and that would allow the difference. Not sure what type of information you want to pass though.
I hope this helps.