Fixed text when scrolling

abap

Solution

In `SE38` you can define list heading with 'GOTO -> Text Elements -> List Headings`.

You can define a list header, and titles for your list (Columns heading).

One advantage: With `GOTO -> Translations` you can define different texts in different languages.

Another way to get this maintenance screen:

From your list, you can choose: `System -> List -> List Header`.

Another way:

You can use `top-of-page` to define your header text inside your report code.

top-of-page.
  write 'My header'.

Problem

My program displays an ABAP list, I'm trying to show a header (some lines of text, nothing fancy) fixed when scrolling down in a report. Is there some kind of tag or declaration that I have to use?

Original source