how to implement outer join in frame work manager
Set the cardinality of your relationship to start with a 0
ie
1..1 -> 0..n would be a one-to-many left outer join
1..0 -> 1..n would be a one-to-many right outer join
0..1 -> 0..n would be a ine-to-many full outer join
Regards,
MF.