drillthrough

Passing integer parameter to drill-through report

非 Y 不嫁゛ 提交于 2019-12-11 16:08:40
问题 I have a report in SSRS. The report has one string parameter and one integer parameter. Both parameters have default values set up. I have a text box with an Action to the report itself (drill-through report). I tried to pass both parameters to the drill-through report (even by hard-coding the values) but only the string parameter goes through. The integer parameter keeps its default value when the drill-through report is rendered. Do you know if there's an issue with integer parameters in

Drill Through not working in SpagoBI server in birt report

有些话、适合烂在心里 提交于 2019-12-07 09:28:46
问题 This is the setting of the hyperlink in birt report The script used to compute the param is as follows: if (params["idContratto"].match(row["contract_number"].toString()) == null){ if (params["idContratto"].value == "abc"){ row["contract_number"].toString(); } else{ params["idContratto"].value + "," + row["contract_number"].toString(); } } else{ if (params["idContratto"].length == row["contract_number"].length){ ""; } else{ temp = params["idContratto"]; temp = temp.replace(row["contract

Drill Through not working in SpagoBI server in birt report

好久不见. 提交于 2019-12-05 18:14:57
This is the setting of the hyperlink in birt report The script used to compute the param is as follows: if (params["idContratto"].match(row["contract_number"].toString()) == null){ if (params["idContratto"].value == "abc"){ row["contract_number"].toString(); } else{ params["idContratto"].value + "," + row["contract_number"].toString(); } } else{ if (params["idContratto"].length == row["contract_number"].length){ ""; } else{ temp = params["idContratto"]; temp = temp.replace(row["contract_number"].toString(), ""); if (params["idContratto"].indexOf(row["contract_number"].toString()) == 0){ temp =