Hi
I am creating one BODS job.
where I have joined one table with 2nd with Left outer Join.
but here my condition is I need to put Some filter on Left Table and One on Right Table data as well.
In SQL it works simply fine but here it is throwing error.
E.g
Select * from Emp left outer Join DEP
on EMP.ID = DEP.ID
where
EMP.PLANT IN ('1310')
AND EMP.ZPM1STAT in (68, 70)
AND DEP.MOVETYPE in ('261', '262')