I have a requirement to display in an ALV Grid, quantities based on month wise, but only show the month columns that have at least one non-zero value.
Now, the ALV shows like this:
matnr 0101 0102 0103 ... 0110 0111 0112
----- ---- ---- ---- ---- ---- ----
0123 0 0 0 0 234 345
0124 0 0 0 458 234 345
but, it should display only:
matnr 0110 0111 0112
----- ---- ---- ----
0123 0 234 345
0124 458 234 345
How to hide the month columns that have only zero values?