Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Hi, I have two data providers.

Status
Not open for further replies.

YashBadiani

Programmer
Nov 14, 2003
5
0
0
US
Hi,

I have two data providers.

I want to achieve 'not exists' functionality between them.

For ex :-

If i have two database tables A(C1,C2,C3),B(C2,C3).

Consider the following SQL query :

select * from A where not exists
(select * from B where B.C2=A.C2 and B.C3=A.C3)

I have two data providers(DP1 & DP2) say with the same definitions as for the two tables mentioned above.

Can i achieve the 'not exists' functionality between them in business objects?

Please let me know if this is feasible.

Thank You,
Yash
 
As you are probably aware of, linking dataproviders is very much like a full outer join between the datasets. You can influence the full outer effect by using complex filters with IsNull logic, but that is the extend of the modification.

A correlated subquery with 'not exists' is altogether something different, using Boolean logic instead of join strategy.....
Don't think you can simulate this within BO reporter...

T. Blom
Information analyst
tbl@shimano-eu.com
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top