Hi all,
I'm working on a workflow where I’d like to define several user constants to make it easier to maintain — especially when we need to update things like legal entities or captions to include or exclude.
The goal is to centralize these filters using constants instead of hardcoding values in multiple tools.
Here’s an example of the filter logic I’m currently using in several steps:
[Caption] IN
("2610", "2620", "3410", "3430", "3450", "4310", "4320", "4330", "4734", "4760", "4770", "4780", "4310", "6910", "6911", "6920",
"6921", "6930", "6931", "6940", "320L")
AND
[Entity] NOT IN ("8700", "8759", "8760", "8761", "8790", "8791", "8797", "8803", "8809")
I’m trying to build constants for these lists (captions and entities), but so far I’ve only managed to get it working with one entity and one caption at a time.
Has anyone found a clean way to store and reuse these kinds of multiple-value filters using constants?
Any help or example would be greatly appreciated!
Thanks in advance