cancel
Showing results for 
Search instead for 
Did you mean: 

printing page numbers on a SAPScript form.

0 Kudos

I would like to add page numbers to a form. I would like to do something like this.

Page: 1 of 2 or

Page: 2 of 2

Any help would be greatly appreciated.

Accepted Solutions (0)

Answers (1)

Answers (1)

Former Member
0 Kudos

Hi,

From Release 3.0, SAPscript allows you to output the total number of pages on any output page:

2 new system symbols (note upper case) were therefore introduced:

  • &SAPSCRIPT-FORMPAGES&

Total page number based on the current output layout set:

  • &SAPSCRIPT-JOBPAGES&

Total page number based on all output layout sets created with the function modules OPEN_FORM, START_FORM .. ENDFORM, START_FORM .. END_FORM, ..., CLOSE_FORM

Examples:

Page &PAGE& of &SAPSCRIPT-FORMPAGES(C)&

Specifies the current page number and total page number. The additional specification (C) outputs the symbol in a compressed form, that is the leading blanks are omitted in the 4-character output (default).

Number of all output pages: &SAPSCRIPT-JOBPAGES(C)&

Outputs the total number of output pages. Caution: When using this symbol, all output pages must be held in the main storage so that the total page number can be inserted at the end of the output. Larger outputs can affect performance.

Thanks&Regards,

Phani,

POINTS HELPFUL.