Hi.
I have a report with a series of parameters and corresponding parameter queries. Some of the parameters are visible and some are hidden, but the value passed on the link they click on to the report.
I'm trying to use some of the hidden param values in the parameter queries, but they don't seem to be recognised. Is there another way to do this?
Simplified example:
sp_DBR_report(inMyParamVisible varchar(255), inMyParamHidden varchar(255))
....
(where inMyParamHidden is hidden from the report users as the name suggests yet is passed in the URL as u2=1234)
sp_PDBR_pquery(inMyParamHidden varchar(255)) ... SELECT inMyParamHidden;
Result: Null
Seems to not show anything when the inMyParamHidden is hidden vs when it is visible to the user.
Any suggestions?