0

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?

Sandra Rossi
  • 11,934
  • 5
  • 22
  • 48
user462982
  • 1,635
  • 1
  • 16
  • 26
  • 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 Jul 16 '14 at 16:01
  • Have a look at the second table here: http://stackoverflow.com/questions/7989409/suppress-duplicate-entriescolumn-in-report-write-and-alv With my settings of SALV, multiple visually equal rows appear like one combined big ("tall") row, i.e. horizonatally separating lines are omitted. – user462982 Jul 16 '14 at 16:13
  • So do you want to have this separating vertical lines while the cells still remain empty but the first one? – Jagger Jul 16 '14 at 16:19
  • No, I want to get rid of the rows that show no addtional information (visually empty rows) – user462982 Jul 16 '14 at 16:21
  • 1
    ?SYNTAX ERROR – vwegert Jul 16 '14 at 18:04

1 Answers1

0

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.