Skip to Content
0
Former Member
Nov 26, 2008 at 12:05 PM

Constant report header

28 Views

Hi all,

I have an internal table filled with report output. I am displaying the data in it from half of the first page till end. I wrote the report header in top-of-page event. It is printing report header in every page, so while scrolling down the report sometimes in a page two headers are seen. Is it possible to display a constant header and when scrolled down the header is constant at the top, only data is scrolled down. After displaying the internal table data I am displaying some other info as well. So the header should start from half of the first page continue till end of the loop iteration and after internal table data printed header should not be displayed. Please advise.

My current report output is as below, which has header in each page, instead when moved to second page, the header should stand at the top and only data should scroll down. After loop iteration, there should not be header displayed again.

Thanks in advance.

-


page1----

line 1----

line 2----

line 3----

-header -

loop at t_out.

report output data--

report output data--

report output data--

report output data--

end of page 1.

-page 2 -

-header -

report output data--

report output data--

report output data--

end of page 2.

-page 3 -

-header -

report output data--

report output data--

endloop.

line----

line----

end of page 3.

-page 4

no header

line---

line---

end of page 4.