Hi All,
I have a BEX query in which I created a structure with two selections, SELECT1 and SELECT2 .
- Detail of selection --> SELECT1
ACCOUNT = 122555
CHART OF ACCOUNT = MAPC
- Detailof selection --> SELECT2
ACCOUNT = 777777
CHARTOFACCOUNT =MAPC
When I execute the query i have this result :
SELECTION | AMOUNT |
---|---|
SELECT1 | 40 |
SELECT2 | 60 |
Aafter when i drag and drop the account from the filter,i have this result
SELECTION | ACCOUNT | AMMOUNT |
---|---|---|
SELECT1 | 122555 | 40 |
777777 | ||
SELECT2 | 122555 | |
777777 | 60 |
Its possible to modify the query to have this result ?.
SELECTION | ACCOUNT | AMMOUNT |
---|---|---|
SELECT1 | 122555 | 40 |
SELECT2 | 777777 | 60 |
Thank you.