I have two data providers which have the same objects but with different conditions.
Query 1
Name Designation Date
========================================================
Sam Consultant Jun 5, 2004
Query 2
Name Designation Date
========================================================
Sam Lead Architect July 5, 2004
All the dimensions are linked.
When I combine the data from two DPs in a single report, I expected the following output
Name Designation (Query 1) Designation (Query2) Date (Q1) Date(Q2)
======================================================================================
Sam Consultant NULL June 5 ,2004 NULL
Sam NULL Lead Architect NULL July 5, 2004
But what I am getting is
Name Designation (Query 1) Designation (Query2) Date (Q1) Date(Q2)
======================================================================================
Sam Consultant Consultant June 5 ,2004 July 5, 2004
Sam Lead Architect Lead Architect June 5 ,2004 July 5, 2004
I am not able to figure out, when was the designation changed for Sam?
What z wrong here?
mkumar (BOB member since 2002-08-26)