Hi All SAP-ies
I am stuckin a scenario where I have written a query which generates the result like below:
DocNum DocDate ItemCode Quantity
1 01/01/2008 I001 25
1 01/01/2008 I002 36
2 02/01/2008 X003 45
Now since there may be multiple ItemCodes for each DocNum
the Info. Of DocNum and DocDate will be redundant.
So I want to show DocNum and DocDate only once and then the other info following it i.e. like this:
Docnum DocDate ItemCode Quantity
1 01/01/2008
I001 25
I002 36
2 02/01/2008
X003 45
So I want to display the result as above in the query based PLD. Plz explain me how to do it???