There is a way to make a join obligatory, also if i’m not using object of the second table? For example.
Table1, Table2 in join.
I use only object of Table1, but i want that in the where condition there is the join with table 2 anyway.
I can do this choosing the table in every object description…but is very long way beacuse i have 1000 differents objects…
Thanks in advance!
In XI R2 I would have tried to do this via a security restriction. You already have a restriction on T2 that you want to be included every time someone references T1. I would add a table restriction that includes “… and T2.ID is NOT NULL” or something like that and applied to the Everyone group. The idea is, anytime someone uses an object from T1 the security checks to see if T2 value is present… by adding T2 to the query we should also include the joins for security.
I don’t know if it would have worked, but that’s what I would have tried.