I have a Zip code list which I need to exclude from the data retrieved for my report and the list of zip codes is around 1800 and the other big problem is these zip codes are not present in database tables. I tried putting all these zipcodes in one selection expert constraint as
not {command.zip_code} in (["12343","34564",.....,"56756"])
but I am getting an error in selection expert that the array is too big.
So I tried breaking the zip codes into multiple arrays of 300 each to a total of around 6 arrays (300*6=1800) as
Iam not getting any errors now but It is am not getting filtered results.
Please give your suggestions
not {command.zip_code} in (["12343","34564",.....,"56756"])
but I am getting an error in selection expert that the array is too big.
So I tried breaking the zip codes into multiple arrays of 300 each to a total of around 6 arrays (300*6=1800) as
Code:
(
(not {command.zip_code} in (["12343","45434",.....,"54322"]))
or
(not {command.zip_code} in (["13433","34564",.....,"56756"]))
or
(not {command.zip_code} in (["98943","34953",.....,"55356"]))
)
-
-
-
-
-
Please give your suggestions