Hi,
Its done.
Below is the correct code.
var_out = ( SELECT T3."A_ID",T4."B_ID"
from "table3" AS T3
left outer join
"table4" AS T4
ON T3."A_ID" = T4."B_ID" ) minus
( SELECT T3."A_ID",T4."B_ID"
from "table3" AS T3
inner join
"table4" AS T4
ON T3."A_ID" = T4."B_ID" );
Just last question is this possible with CE functions also?
BR
Sumeet