how to pass a list of integers to birt parameter value?
How do I pass three integers - 1111,2222,3333 to the value of WS_FACTID?
I tried {1111,2222,3333} but didn't work... :( |
3 answers
well, there are two issues here
1. passing multiple parameters 2. the report USING multiple parameters.. do we know if the report SUPPORTS using multiple numbers concurrently? |
My problem was that I had a set of FACT_ID fetched in one data set, and then I had to fetch value of PREV_FACT_ID of each FACT_ID in set.
I was able to solve this by setting Data Set's query programatically in beforeOpen script.
In Clement's case (pass three integers - 1111,2222,3333 to the value of WS_FACTID) the queryText would be:
this.queryText = 'WS_FACTID IN (1111,2222,3333)'; |
I have got the very same problem, i need to pass a list of item ids into the parameter, but not via own parameters... the proposed solution does not work in my case, is there anyone who knows how i could solve this issue? :( thank you!
|
Your answer
Dashboards and work items are no longer publicly available, so some links may be invalid. We now provide similar information through other means. Learn more here.
Comments
I have similar issue, I'd like to pass multiple values as parameter to FACT_ID column. Were you able to solve the problem?