Using a decision table in report definition
I have a Report Definition, where the query is built like below.
Select Column1, column2.. From Table TableName
Where UserID IN ('abc','def','ghl',.....,'xyz')
I have been provided some 150 UserIDs and i cannot type all of them inside the IN() for this clause. I have been instructed to consider using a Decision table above all. Is it possible to use a Decision table in this scenario ? What alternatives do i have ?
PS: I am using this Report Definition in an activity.
Thank you.