Sorry for the confusion....I got the below output in DSO3:
100 10 - ABC 24.5 -
100 20 - DEF 35.6 -
101 10 - LMN 67.2 -
100 10 1001 - - 56.8
100 10 1002 - - 58.9
Now my requirement is to only show the header and item data that has document no. If there is no document no, then show the header and item data with blank document no.
Eg: Output should be as below:
100 10 1001 ABC 24.5 56.8
100 10 1002 ABC 24.5 58.9
100 20 - DEF 35.6 -
101 10 - LMN 67.2 -
Now if there is a new document no for 3rd record above in next delta with doc no 1003, final o/p needs to be as below. The previous record need not be shown...
100 10 1001 ABC 24.5 56.8
100 10 1002 ABC 24.5 58.9
100 20 1003 DEF 35.6 88.5
101 10 - LMN 67.2 -
This seems to be through ABAP. Can some one suggest and help?