Hi All,
I have a requirement like in output there are 3 column. Plant Customer and expense.
Plant values are like 1000, 1010, 1020 , ...1090 and so on..
For a plant 1020 customer can be P1020 , P1020-14 , P1040 , XABC , XTEST. So a plant 1020 is having 5 customer on which 2 customer name like p1020*.
Report is having an selection on plant(multiple single values)
When I am running the report for plant 1020, expected output is
Plant | Customer | Expense |
1020 | P1020 | |
1020 | P1090 | 10 |
1020 | XABC | 3 |
1020 | TEST | 7 |
1020 | P1020-14 |
that means customer starting with P and then plant name and then * will not be showing their expenses in the report. Like P1020 / P1020-14
When I am running the report for plant 1090, expected output is
Plant | Customer | Expense |
1090 | P1020 | 6 |
1090 | P1040 | 10 |
1090 | P1090 | |
1090 | TEST2 | 8 |
1090 | P1090A |
that means customer starting with P and then plant name and then * will not be showing their expenses in the report. Like P1090 / P1090A.
For the above two scenario report is working fine. But when I am running the report for multiple plant selction for eg 1020 and 1090 . Then the output is
Plant | Customer | Expense |
1020 | P1020 | |
1020 | P1090 | |
1020 | XABC | 3 |
1020 | TEST | 7 |
1020 | P1020-14 | |
1090 | P1020 | |
1090 | P1040 | 10 |
1090 | P1090 | |
1090 | TEST2 | 8 |
1090 | P1090A |
In the about output I am missing expense figure plant 1020 and customer P1090 .. And also I am missing expense value for Plant 1090 and Customer P1020. I want the missing two rows key figure to be displayed as the earlier nullification is getting applied to entire records not corresponding to the customer set corresponding to the plant. I have thought of making it single value and keeping two variable for multiple selection but tomorrow someone might want to try with 3 plant. 4 plant and so on.
Any help would be appreciated.
Thanks
Snehasish