I have configured the filter below in my Workday source to look at accounts with only the JOB_FAMILY of TEST_FAMILY. The aggregation is successful but pulls in none of the test accounts I have with this job family. Any thoughts on what may be amiss?
If I am understanding correctly, it seems it’s expected that none of the accounts with JOB_FAMILY as TEST_FAMILY will be aggregated because the operator used is Not Equals (!=). If you want to aggregate only TEST_FAMILY accounts, you can use Equals (==) operator.
Thanks for chiming in. Yes you are tracking with the use case I described. I have the same understanding that the ‘!=’ does not return the Job Family listed in the filter…it returns no accounts. However - when I use the ‘==’ it returns all the accounts - instead of the accounts I want to filter. It appears to do the opposite. Perhaps it’s not represented correctly in the target system maybe?
I was able to get the desired result with the filter below. Notice I added Negation (!) at the beginning of the value for it to filter the accounts I wanted it to aggregate. The condition passed.
This is a bit puzzling and opposite of the documentation below.
Usually a negation would work if the we see the Inner Condition: plaintext JOB_FAMILY != "TEST_JOB_FAMILY"
However, to make it work for me I had to do the opposite of the inner condition and make the Inner condition "== or true See below.
Needless to say - it took a little grinding to get to this discovery and it works exactly like I need it to. Thanks for the assist. You pointed me in the right direction my friend.