At the moment it seems upvoting the idea wall for this issue is the only consideration.
We found a couple of workarounds that may work for others while we wait for the functionality to be added…
1. Create an external navigation link to the SSRS server report passing in the parameters with ampersands.
http://your-ssrs-server/ReportServer/ ..path to your report/your report name¶meter1=p1¶meter2=p2&… rest of parameters
When you paste this into the Page Designer, you will be prompted to map the parameters.
The resulting url should look something like this:
http://your-ssrs-server/ReportServer/Pages/ReportViewer.aspx?%2fPublished+Reports%2fMyCustomerOrderReport&rs:Command=Render&ORDER_NO=${OrderNo}&LINE_NO=${LineNo}&REL_NO=${RelNo}&LINE_ITEM_NO=${LineItemNo}
2. Create a generic operational report containing generic text, number, and date parameters, plus a parameter for the report name. The purpose of the report is to pass parameters. Otherwise, the report has no content.
To make this work, I had to also create .rpls for each SSRS report and register the .rpls with the generic operational report, then use report rules to call the correct layout.
The new _rep view then needs to be added in a data set to each SSRS report to pass the parameters from IFS into the report.
The last step is creating the operational report link using the Page Designer.
Admittedly, this is a long slog, but it does work as an alternative to using the external link.