i have made a parameter in oracle report builder (p_user) wich can return a list with multiple users.
How can i use this in my select statement to optain the correct list?
I have now:
select note,user,dep_name,dep_id from departement_notes where user=:p_user
For now if i select 1 user it will show all notes from this user. When i select multiple users it will show nothing as the 'user' does not match the p_user value.
Example;
if the paramater 'p_user'= AR then the list shows everything for user AR when the parameter 'p_user'= AR,CZ,GD then nothing is shown