cancel
Showing results for 
Search instead for 
Did you mean: 

Print out multiple copies for next page in sapscript

Former Member
0 Kudos

Hi All,

For check printing the client wants the next page with item data to be printed out twice, while the first page along with the check will be printed out on a pre-printed paper. Can anyone advice me on this.

Accepted Solutions (0)

Answers (4)

Answers (4)

Former Member
0 Kudos

hi,

do the loop wihich print the items 2 times.

(With between a new-page)

Gr., Frank

former_member187457
Active Contributor
0 Kudos

Hi

Create window for line items on next page same as created on first page as Main Window....

Thnx

Rahul

Former Member
0 Kudos

hi,

IF &PAGE& EQ 1

"do write what all you need to print in First page

ELSE

"write what all necessary you want to print from second page onwards..By this first page will not print in Second Page

ENDIF.

IF &NEXTPAGE& EQ 0

"This Means it is last Page write footer or any comments in Last Page

ENDIF.

Prabhudas

Former Member
0 Kudos

You can try out the new page command for next page. The logic might be like this.

In NEXT page:

START.

{ print whatever is required for next page}

Use the NEW Page command.

and again {print whatever is required for next page}

END.