Hi everyone,
I am trying to replicate an existing report built using custom sql into a BO report
Background
I have 3 tables with following joins
T1-T2 --> many to one
T2-T3 --> one to Many
I need only info from T1 & T2 in the report but, the where clause has a NOT EXISTS logic embedded. It searches if the record in T1 exists in T3 or not, if not then that row has to be reported
WHERE
NOT EXISTS(SELECT 1 FROM T3 WHERE T1.AREACODE=T3.AREACODE AND T3.BILLING UNIT='' AND T3.INVOICENO='')
Since T1 -T3 will be a many to many join, I want to know any possible method to implement this at report/universe level with out joining T3
However, we don't want it to be a derived table/FHSQL since the current report itself is built on one
Environment
DB2
BO 4.1 SP3
Thanks in advance
Mitch