0
votes

Consider the heading (ABAP) pseudo code on a SALV-Grid. I need something like this, or, some way to remove the visual vertical bloating of rows in the grid when the columns that differentiate them are hidden. After a lot of reasearch, I doubt that such a thing exists, so I need to work around it.

I want to change just the view, I don't want to modify the underlying internal table. Any ideas on how to best accomplish this? Events maybe?

1
I seriously doubt you can influence the "visuality" of the SALV-Grid in SAP GUI. Secondly, can you please explain what "bloating of rows" mean? - Jagger
Have a look at the second table here: stackoverflow.com/questions/7989409/… With my settings of SALV, multiple visually equal rows appear like one combined big ("tall") row, i.e. horizonatally separating lines are omitted. - user462982
So do you want to have this separating vertical lines while the cells still remain empty but the first one? - Jagger
No, I want to get rid of the rows that show no addtional information (visually empty rows) - user462982
?SYNTAX ERROR <blinking blue cursor> - vwegert

1 Answers

0
votes

Make a copy of the data from your table and remove duplicates from the copy. Pass the copy to your grid. The hurdle here would be ensuring you update the original table if edit, delete, and create functionality is enabled in your grid.