Hi all,
I have an internal table itab with PO numbers and item no's, and it has following records:
data: begin of itab occurs 0,
ebeln(10),
ebelp(5),
end of itab.
ebeln ebelp
1100991112 0001
1100991112 0002
1100991112 0003
1100991113 0001
1100991113 0002
1100991112 0001
1100991112 0002
1100991112 0003
1100991113 0001
1100991113 0002
As you there are several duplicate records in the file and I want to delete these records, so my internal table shoud look like this:
ebeln ebelp
1100991112 0001
1100991112 0002
1100991112 0003
1100991113 0001
1100991113 0002
so can you please tell me how to get this.
Thanks
Rajeev
Message was edited by:
Rajeev Gupta