Hi Sumit,
Can we go with an example. Suppose we have infocube1
Char1 Char2 Kyf1
abc 123 500
abd 158 1000
And we have infocube2
char1 char3 Kyf2
abc 1a5 300
abe j30 200
if we could make a left outer join we would see the result as:
char1 char2 char3 kyf1 kyf2
abc 123 1a5 500 300
abd 158 # 1000 0
Right?
When we have the infoset, the result would be:
char1 char2 char3 kyf1 kyf2
abc 123 1a5 500 300
abd 158 # 1000 0
abe # j30 0 200
Right?
When we have a query on ınfocube1 to see the distinct values for char1 we will get:
abc
abd
And when we use this query as replacement path variable in the infoset query, the infoset results will be restricted as what we would see in making a left outer join. Please try to explain the bahvior of your data so that I can help with that.
Regards
Yasemin...