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

scripts

Former Member
0 Likes
438

how do u print the output ofscript from the second page,(leaving first page blannk

2 REPLIES 2
Read only

Former Member
0 Likes
418

hai Vali,

Maintain Following Condition in Main Window.

If &SAPscript-formpages& = 1.

/: New-page P2.

endif.

If Found helpfull Reward.

Regards.

Eshwar.

Read only

Former Member
0 Likes
418

Hi Vali,

Try the following code in your script.


/: IF &PAGE& EQ '1'.
/: NEW-PAGE Page2.

Lets say you have two pages Page1 and Page2. If you specify the Page2 in the second command line, the first page will be left blank and the output will start printing from the next page.