How do i suppress duplicate entries in both classical (write) and ALV report? I was given a task to write a simple report with this criteria. I tried to google but could not succeed with any of their solutions and need help. Below is the expected result.
original report:
--------------------------------------
|Sales Org | Dist.Channel | Division |
--------------------------------------
|1000 |10 |00 |
|1000 |10 |00 |
|1000 |10 |00 |
|1020 |22 |00 |
|1020 |22 |00 |
--------------------------------------
expected output:
--------------------------------------
|Sales Org | Dist.Channel | Division |
--------------------------------------
|1000 |10 |00 |
| | | |
| | | |
|1020 |22 |00 |
| | | |
--------------------------------------
need help.Thank you.
Assuming you are using an internal table to store data that is going to be displayed, you can use DELETE ADJACENT DUPLICATE ENTRIES FROM itab.
For ALV grid you have to use an internal table. For WRITE statement, even if you read directly from a database table you can buffer the entries in an internal table, use the above statement to delete duplicates and then display results from internal table.
Regards, Sergiu