Application Development 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: 

SAP Script Print

Former Member
0 Kudos
130

Hi,

I have three pages in the script :

First, Next and Follower

The Follower page has some details which needs to be printed in the reverse side of the First page only and not on the Next page.

In duplex mode it is printing the Follower page in the reverse side of the last of the Next page.How to print it in the reverse side of First page?

Thanks in advance

1 ACCEPTED SOLUTION

Former Member
0 Kudos
95

Hi,

Call Follower page immediately after FIRST.#

So, the sequence should be like this.

FIRST, FOLLOWER, NEXT.

regards,

ram

5 REPLIES 5

Former Member
0 Kudos
96

Hi,

Call Follower page immediately after FIRST.#

So, the sequence should be like this.

FIRST, FOLLOWER, NEXT.

regards,

ram

Former Member
0 Kudos
95

Hi Alka,

u need to give Follower as the Next page for the First Page & set it in Duplex mode...

the Next Page shud be the next page for Follower with Simplex print mode..

hope this helps..

0 Kudos
95

Hi,

I have item details getting printed in the First page Main window which will overflow to the Next page when required.I have called the Follower page dynamically in the First page.

NEW-PAGE FOLLOWER

still its not working.

Thanks & Regards

Former Member
0 Kudos
95

Hi Alekhika,

Try this.

1.In sap script page settings the print attribute 'PRINT MODE' of first page is set to 'D'(duplex) and follower page 'PRINT MODE ' as blank (no change in print mode).

2. The sequence of page must be

next page of FIRST -> FOLLOWER

next page of FOLLOWER -> FIRST

3. printer settings are to be done for printing on both sides.

Mukesh Kumar

Former Member
0 Kudos
95

Hai

CALL FUNCTION 'GET_PRINT_PARAMETERS'

EXPORTING MODE = 'BATCH'

REPORT = 'MYREPORT'

IMPORTING OUT_PARAMETERS = PARAMS

VALID = VALID.

look into this link

http://help.sap.com/saphelp_nw04/helpdata/en/d5/6243ea8a4111d4b605006094192fe3/content.htm

Thanks & regards

Sreeni