Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

Problem in SAP Script

Former Member
0 Likes
376

Hi friends,

I am facing strange Problem,I Want to print the page number is my Script as 1/14,2/14,3/14 like this...

I have used system variables to display

&PAGENO(C)/&SAPSCRIPT-JOBPAGES(C)&... If I pass C as Argument for SAPSCRIPT-JOBPAGES the value are coming like 1/1,2/1,3/1.....9/14,10/14,11/14....

If i dont pass C as Argument for SAPSCRIPT-JOBPAGES ,The values are printing correctly but it gives the spaces..like

1/ 14,

2/ 14,

3/ 14.....

9/ 14,

10/ 4,

11/ 14....

Any solution to print 1/14,2/14....14/14..?

In Advance thanks,

Gautam.

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
350

Hi Gautham,

Try this way

&PAGE&/&SAPSCRIPT-FORMPAGES&

Best regards,

raam

2 REPLIES 2
Read only

Former Member
0 Likes
351

Hi Gautham,

Try this way

&PAGE&/&SAPSCRIPT-FORMPAGES&

Best regards,

raam

Read only

0 Likes
350

Hi,

I have tried..but same problem...