Hi every body,
After an installation of Pentaho BI server v5.0.1 (stable), I upload a CDE dashboard that I made in version 4.8
In my dashboard, i use a multiselect component that feeds my query that feeds my Pie chart.
In old version, no problem it works. In the new version, when I select only one element, no problem, it works !
but when I select severals, I have "no data found" instead of the chart, where is the problem ? Is there a difference between these two versions ?
Can someone help me please ?
thanks in advance
my query :
SELECT RE.REPNUM_0 as 'Code Commércial',
RE.REPNAM_0 as 'Nom Commércial',
round(sum(SI.AMTNOTLIN_0)) as 'CA'
FROM sinvoiced SI, representants RE
WHERE RE.REPNUM_0=SI.REP_0
AND RE.REPNAM_0 IN (${param_mrep})
GROUP BY RE.REPNUM_0
ORDER BY RE.REPNUM_0 DESC
After an installation of Pentaho BI server v5.0.1 (stable), I upload a CDE dashboard that I made in version 4.8
In my dashboard, i use a multiselect component that feeds my query that feeds my Pie chart.
In old version, no problem it works. In the new version, when I select only one element, no problem, it works !
but when I select severals, I have "no data found" instead of the chart, where is the problem ? Is there a difference between these two versions ?
Can someone help me please ?
thanks in advance
my query :
Quote:
SELECT RE.REPNUM_0 as 'Code Commércial',
RE.REPNAM_0 as 'Nom Commércial',
round(sum(SI.AMTNOTLIN_0)) as 'CA'
FROM sinvoiced SI, representants RE
WHERE RE.REPNUM_0=SI.REP_0
AND RE.REPNAM_0 IN (${param_mrep})
GROUP BY RE.REPNUM_0
ORDER BY RE.REPNUM_0 DESC