Hi
I wanted to create a report in which I need to convert rows in to column.
e.g i have table it_zdemo contains the following values
Part | WorkWeek | Qty |
A100 | 1301 | 100 |
B100 | 1302 | 200 |
C100 | 1304 | 300 |
A100 | 1305 | 200 |
A100 | 1306 | 100 |
I need to print the report as follows
Part | WW1301 | WW1302 | WW1014 | WW1305 | WW1306 |
A100 | 100 | 200 | 100 | ||
B100 | 200 | ||||
C100 | 300 |
Any suggestions?
Regards
Ginee