I got table with 2 IDs. I'm using parametrs as filters.
eg.
| ID | DIFF_ID |
| ----| ------ |
| 1 | null |
| 2 | 3 |
| 3 | null |
...
As you can see Diff_ID has the same int as ID and I need to use DIFF_ID to show other values in table by using parametrs eg.
case when $P{aba} is true then DIFF_ID (...) = ID(?) end
if the paramter 'aba' is true then use DIFF ID as base but show up as ID.
I'm expecting DIFF_ID appear in ID column if the parameter is true.