I have these objects
- Level1Obj
- Level2Obj
- Level3Obj
ok, let say I have these records
I can setup filtering like this, and it works.
New object type Test
- Level1Obj
- Level2Obj
- filter = objectType="Level1Obj" and object HAVING outBoundreferences(Name like ${"Level1Obj")
- Level3Obj
- filter = objectType="Level2Obj" and object HAVING outBoundreferences(Name like ${"Level2Obj")
ok, pretty sure that will work, but I want to have multiple, so I tried this, which does not work.
- filter = objectType="Level1Obj" and object HAVING outBoundreferences(Name IN (${"Level1Obj"))
Just wondering if the should work and I'm doing it wrong, or nope, this will not work by design?