I have validated the SQL of a report using the QUERY TOOL in the Universe and when i view the SQL it is being generated correctly. When i export the Universe to CMS and try to run a report in WEBI the SQL Generated in not correct. It has mutiple AND’s in the Join Condition and in the last filter condition. Which is causing the report to fail. I noticed that the SQL generated on the DESKI is also correct. The problem is just with WEBI
Has anyone noticed such a behaviour. Is it a BUG or what.
Was any solution to this ever found? I’m experiencing the same problem now, in XI r3. Here’s what I have:
Universe:
T2.COL1=T1.COL1
DeskI:
FROM
T1 INNER JOIN T2 ON (T2.COL1=T1.COL1)
WebI:
FROM
T1 INNER JOIN T2 ON (T1.COL1=T2.COL1 AND )
Now, the query contains objects from two tables, and one of the objects forces a join to the same table that the other objects are from. Is this the problem? Should I not force that join?