I have been trying to make a list box report parameter with multiple choice enabled. I'm trying to filter my report based on this parameter. I have wrote a code something like this, but it is not working;
importPackage(Packages.java.util.logging);
var fileHandler = new FileHandler("/tmp/birt.log", true);
var rootLogger = Logger.getLogger("");
rootLogger.addHandler(fileHandler);
var queryString = "";
queryString = "select * from public.r_"+params["rid"]+"_0 where (r_date_1 >= '"+params["startdate"]+"' and r_date_2 <'"+params["enddate"]+"')";
queryString += " and (r_vchar_3=";
filterIPLength = reportContext.getParameterValue("filterIP").length;
Logger.getAnonymousLogger().info("Parameter Count: "+filterIPLength);
for(i = 0; i<filterIPLength; i++) {
queryString += "'"+reportContext.getParameterValue("filterIP")[i]+"'";
if (i != filterIPLength - 1) {
queryString += "or r_vchar_3=";
}
}
queryString += ")";
this.queryText = queryString;
the problem here is, reportContext.getParameterValue("filterIP").length; line always returns 1, even though I choose multiple parameters and the report only shows the first selected data since for loop runs only once.
What may cause this problem? How can i debug and solve it?
Any ideas will be appreciated.