cancel
Showing results for 
Search instead for 
Did you mean: 

Header in every page of SAP-Script

Former Member
0 Kudos

Hi all,

How to print header in every page of SAP-Script?

Thanks in advance,

SG

Accepted Solutions (0)

Answers (1)

Answers (1)

Former Member
0 Kudos

Hi,

While giving the WRITE FOR, u have to give the Value HEADER for TYPE.

U have it to give it inside the Loop so that u ll get the header in all pages.

For eg.,

Loop at <itab>.

CALL FUNCTION 'WRITE_FORM'

EXPORTING

element = 'ELEMENT1'

type = 'HEADER'

window = 'WINDOW1'.

...

....

.....

endloop.

Regards,

Padmam.