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: 

header on every page..

Former Member
0 Kudos

Hi experts,

I want to display ma header on every new page of ma report..as top-of-page event triggers only once how it cud be possible to display header on each and every page..is there any page break kind of funda taht i can use here..

Regards,

raman

1 ACCEPTED SOLUTION

Former Member
0 Kudos

Hi Raman,

In the header of your report add the LINE-COUNT statement.

If your page size is 100 lines then maintain REPORT statement as:

REPORT zreport LINE-COUNT 100.

Cheers,

Aditya

4 REPLIES 4

Former Member
0 Kudos

Hi Raman,

In the header of your report add the LINE-COUNT statement.

If your page size is 100 lines then maintain REPORT statement as:

REPORT zreport LINE-COUNT 100.

Cheers,

Aditya

0 Kudos

wud it b helpful in displaying header into every page...u mean to say that after every 100 lines of page the top-of-page event will fire again

0 Kudos

Hi Raman,

Exactly. After every 100 lines (as maintained in LINE-COUNT) the TOP-OF-PAGE will fire.

Cheers,

Aditya

I355602
Advisor
Advisor
0 Kudos

Hi,

Refer:


REPORT abc line-count 15 no standard page heading.

DO 100 TIMES.
  WRITE 😕 SY-INDEX.
ENDDO.

TOP-OF-OAGE.
  WRITE 😕 'Top Of Page'.

Hope this helps you.

Regards,

Tarun