I have a requirement in IReport. In this i want to make table name as a parameter. Is it possible in ireport to pass it as a parameter? Does jasper support this?
Thanks, Ben
I have a requirement in IReport. In this i want to make table name as a parameter. Is it possible in ireport to pass it as a parameter? Does jasper support this?
Thanks, Ben
Look at this exemle it will help you
If parametre Type = 0 Then the choice will be Name1 ...............
(
$P{Type} == "0" ?
"Name1" :
$P{Type} == "1" ?
"Name2" :
$P{Type} == "2" ?
"Name3" :
"Default Name"
)