I have a scenario in report where I need to show packing cost of Goods Each material Doc (BELNR) no Has two (MATNR) .
1st MATNR shows the Cost of Bulk Packing of Goods and
2nd MATNR shows Cost of Single Packed goods
PO Doc | Material Doc | Material no | Cost | Type of cost |
11111 | 256353 | 123 | 12 | # Single |
256353 | 123 | 10 | # Single | |
256353 | 456 | 40 | # Bulk | |
55555 | 66653 | 789 | 12 | # Single |
66653 | 890 | 43 | # Bulk | |
66653 | 789 | 33 | # Bulk |
I have added amount in columns restricted material Doc (BELNR) with material type(MATKL= Packaging) now this shows the Consolidated Packing cost of Goods like this
PO Doc | Consolidated Cost Of Material |
11111 | 62 |
55555 | 88 |
But my requirement is to add two columns in report which can classify single and packed material cost in separatly based on these MATNR
In above case i had the key in Material type (MATKL) for Packing Material which served as key for Packing Material on Material Document No (BELNR)
Now i dont have any further classifier for MATNR which can classify these two different material to show breakup Cost of Packing Material
to show up report like this
PO Doc | Cost Of Bulk Material | Cost Of Single Material |
11111 | 62 | 12+10 =22 |
55555 | 88 | 43+33 =76 |