cancel
Showing results for 
Search instead for 
Did you mean: 

a paging probem of the sapscript form?

Former Member
0 Kudos

hi,all.

when I am printing the form report .It can display how many pages of the report ,

and if I click the icon of the next page ,can see the different content of different page.

but when execute the print action,the next page content just overlay the content of the front page.and come out to be one page print result ,with content is the overlayed content.

pls help me,thank you in advance.

Accepted Solutions (0)

Answers (1)

Answers (1)

Former Member
0 Kudos

in SAPScript how many pages have you created?

If pages are more than one then have you maintained sequence of printing between them?

Check if you are giving new page command or calling new page after printing 1st page...

Former Member
0 Kudos

hello,sharayu.

I just create one page.next page is the page itself .do I have to create more than one page if I want to print more than one page ?how to do this ?pls if me detained step if you know ,I will appreciate it .

Former Member
0 Kudos

in the page in standard attributes have you maintained the same page as next page?

Former Member
0 Kudos

yes!

Page Description NextPage Mode No.type

P1 PAGE P1 INC ARABIC

Message was edited by:

niuniu

Former Member
0 Kudos

yes ,I have.

sorry have post the no-english description.

just like the display:

Page Description NextPage Mode No.type

P1 PAGE P1 INC ARABIC

Former Member
0 Kudos

at the end of your page write foll. code

/: NEW-PAGE

Former Member
0 Kudos

I have three page windows of one page ,

first 'main' page window is for the display content fields .

second 'foot' is for end of page description.

third 'head' for drawing the grid of the form .

where should I write in ?first or third?

the form is written by someone else who have leave .I know little about form

,so pls be patience to me .

and when I click the 'add' icon, there are :symbols,command ,text element,comment,sap characters ,link.which component should I use?

thank you very much!

Former Member
0 Kudos

if foot is the last window that is being printed...

in the 'foot' window go to Text Elements...

go to the las line of the text element...

there give tag column as /: i.e. command

in text line write NEW-PAGE

Former Member
0 Kudos

hi,

it just didn't work.I just do it according to the step of

'in the 'foot' window go to Text Elements...

go to the las line of the text element...

there give tag column as /: i.e. command

in text line write NEW-PAGE '

thank you all the same .maybe it is the program what has wrong .

I recheck it .

thank you again for your kind help.

Message was edited by:

niuniu

Former Member
0 Kudos

check if the element in which you are writing the new-page is getting called or not..

otherwise create a new element for NEW-PAGE command...

and call that element through WRITE_FORM FM at the end of your 1st page processing...