Right now, only the default values can be embedded. How would we embed the Ghana crosstab with parameters? We have 2 parameters for this report, the users need to select which dimensions they want.
The parameters Survey_field & Districts are setup on the report which is a .rptdesign file.
Resolution:
passing parameters to the authexport servlet works the same way as with the standard export servlet. Just prefix the parameter key with "p_" and add it as a url parameter.
So for Survey_field and Districts you will end up with an url like this:
To pass multiple values to a multiselect parameters, seperate the values using the pipe (|) symbol.
you can embed the complete execute report view (see admin guide p 69) Unfortunately this only works when the user is logged in and the reportserver design becomes visible.
you can write a custom parameter form as html. currently only the GET method is supported by the authexecuteservlet (which has a limit on the number of parameters) but changing this so POST works too, is only 5 minutes work.
For more details, see section 6.11 in the administrator's guide.
Right now, only the default values can be embedded. How would we embed the Ghana crosstab with parameters? We have 2 parameters for this report, the users need to select which dimensions they want.
https://reporting.akvo.org/reportserver/reportserver/httpauthexport?key=GhanaxtabCSS&format=html&user=test&password=test1
The parameters Survey_field & Districts are setup on the report which is a .rptdesign file.
Resolution:
passing parameters to the authexport servlet works the same way as with the standard export servlet. Just prefix the parameter key with "p_" and add it as a url parameter.
So for Survey_field and Districts you will end up with an url like this:
https://reporting.akvo.org/reportserver/reportserver/httpauthexportkey=GhanaxtabCSS&format=html&user=test&password=test1&p_Survey_filed=value&p_Districts=value
To pass multiple values to a multiselect parameters, seperate the values using the pipe (|) symbol.
For more details, see section 6.11 in the administrator's guide.