0
votes

I have a report in ABAP.

After start selection I write the result with 'Write' command. I have many lines so it exceeds the screen height. I also have a refresh button in menu. When I refresh the page it writes the whole screen again. But the problem is that; before refresh I scroll down to 5000th line, after refresh it writes everyline again but the screen goes to the first line.

I want screen to stay where it was before refresh.

Thanks.

1
...how about using an up-to-date mechanism to display data instead of WRITE...? :-)vwegert
you are always telling this to me. I (an unexperiented ABAP programmer) should do it like this right now. I will update my self soon. Thanks :)Mtok
If you're being told to use outdated technologies: That's not educating people, that's the exact opposite...vwegert

1 Answers

1
votes

You can find the first line of the list in sy-staro and use SCROLL LIST to change the position after updating the list.