Dear fellows,
I need to design below report:
We have contracts master data. These contracts will have one status any point of time. Each contract can have multiple conditions and this transaction data sets in a cube. We need to create a report which will display all the contracts missing one particular condition for a particular status.
E.g let's say below is the set of data. We want to display all the contracts which has status "SETT" and condition COND1 is missing in conditions transaction data.
So from below data set query should return only contracts 1003 and 1004.
FYI : Contracts master data is available in IO and cube as well.
Contract Master Data | Status |
1000 | REL |
1001 | DEP |
1002 | SETT |
1003 | SETT |
1004 | SETT |
Conditions Transaction Data | |
1000 | Cond1 |
Cond2 | |
Cond3 | |
1001 | Cond2 |
Cond3 | |
1002 | Cond1 |
1003 | Cond2 |
Cond3 | |
1004 | Cond3 |
Please guide.