cancel
Showing results for 
Search instead for 
Did you mean: 

Sapscript new page

Former Member
0 Kudos

I would like to know how to detect is it a new page, since i would like to write header on each page. thanks!

Accepted Solutions (0)

Answers (6)

Answers (6)

dru_marcellana
Participant
0 Kudos

You may not need to worry about the logic for handling header texts.. In the MAIN window, you may create an element having TOP.. ENDTOP. This will surely guarantee that the header (let's say for the items) will always appear.

Reward points if helpful...

former_member187457
Active Contributor
0 Kudos

hi

u can use

..IF &NEXTPAGE& NE 0

....

.....

...ENDIF....

thnx

Rohit

former_member196280
Active Contributor
0 Kudos

If you want to write header on new-page or every page, use Text elements in your steering program.

Regards,

SaiRam

Former Member
0 Kudos

Hi,

You can able to see the pages in the page tab of form.

no need to write any logic for first page display of header.

you can write it down in the first page and skip all the pages of the form, so that it can be visible only in the first page

revert back if not clear

regards

sailendra

Former Member
0 Kudos

hi,

if your problem is of writing a new header in every page, simply create a page window (VAR type) as header and put a variable as the text content in it.

now, simply update the variable to update the window's contents.

if you want to put page number in your header, you can use

system symbol &PAGE&

refer to the link below for more info on system symbols.

Link: [http://help.sap.com/saphelp_nw04/helpdata/en/d1/803375454211d189710000e8322d00/frameset.htm]

Former Member
0 Kudos

Hi,

please see in pages tab. u can see how many pages are created.

Former Member
0 Kudos

I would like add a logic in sapscript, just like

if new-page.

write header

endif.

Thanks!