Hello,
I need to modify and old report with a lot of code.
This report is using FM REUSE_ALV_GRID_DISPLAY.
Now, the requeriment is add a new field and make it editable only in some rows.
I know I can do it using FM REUSE_ALV_GRID_DISPLAY_LVC (or using OO...), but this involves changing a lot of code because these FM use different structures, etc.
I've found a workaround using event TOP_OF_PAGE and FM GET_GLOBALS_FROM_SLVC_FULLSCR to get the grid instance.
https://answers.sap.com/questions/4987648/single-row-editable-in-reusealvgriddisplay.html
it is working fine, but we dont need a TOP_OF_PAGE.
Is there a way to hide the top of page ?
I'm using parameter i_html_height_top, but the lowest value is 1, if you put 0 then is set to 20.
Do you know if I can hide the to of page or do these rows editables in other way without changing all the code...
Thanks.