Application Development Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 

Constant Column Headings, even I scrolled down?

Former Member
0 Kudos

Hi Experts,

I developed a classical resport, which does have (min.)100 rows, so When I am scroolling down, the Column Headings r going up! i.e. when I come down, I can not see the column headings!

So,

How to keep the column headings constantly, even though I scroll down to last page?

ThanQ.

1 ACCEPTED SOLUTION

Former Member
0 Kudos

Hi,

You can use the TOP-OF-PAGE event to give the headings..

Check this example..

START-OF-SELECTION.

DO 100 TIMES.

WRITE: / SY-INDEX.

ENDDO.

TOP-OF-PAGE.

WRITE: / 'Heading - Top of page'.

Thanks,

Naren

2 REPLIES 2

Former Member
0 Kudos

Hi,

You can use the TOP-OF-PAGE event to give the headings..

Check this example..

START-OF-SELECTION.

DO 100 TIMES.

WRITE: / SY-INDEX.

ENDDO.

TOP-OF-PAGE.

WRITE: / 'Heading - Top of page'.

Thanks,

Naren

0 Kudos

ThanQ Naren.