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

SAP-SCRIPT issue

Former Member
0 Likes
788

GUY'S

pls help me,i have tried to get answer for these

question but no budy help me,i don't think this is the

issue ,which no budy have handled.

i am working on sap-script where i am in a dilema of printing overflow document, as per current setting we

have three page's 1)FIRST 2)BACK 3)NEXT .starting is from

FIRST page ,which in turn will call BACK page,in FIRST

and NEXT page we are printing document no and in BACK page we are printing 'terms and condition' .we can't change this setting, problem is if we have 50 document

to get printed ,and suppose 1-10 document get printed

on FIRST page and then Terms and condition get printed

and then 12-20 document get printed on NEXT page,document

no 11 get missed ,because it try to print itself on terms

and condition page.i hope you guy's got exactly what is

the issue

7 REPLIES 7
Read only

Former Member
0 Likes
758

Hi Sanju,

Are FIRST and NEXT Pages are same format..?

Do you want to print BACK page on all back of FIRST pages..?

regards,

ram

Read only

0 Likes
758

Hi Ram

yes BACK page should print at the back of FIRST page,

even MODE i kept increment for INC ,previoulsy it was

start for FIRST page ,but no use

Read only

0 Likes
758

Hi Sanju,

You should use duplex method to print data on backside of page.

i understand your requirement. You need to print BACK page on each back of FIRST page. Next page of FIRST page should be NEXT page.

If you dont want to give page counter for BACK page, you can code to reset the page counter to previous value or you can setn HOLD mode for BACK page.

Is it correct..?

ram

Read only

0 Likes
758

HI ram

yes BACK page should be print on back of FIRST and NEXT page,we have already use duplex (D),but the problem

is if there is any overflow document on FIRST or NEXT page,it will get missed ,because it will try to print

itself on BACK page were terms and condition has been

defined,my question is how ,we can save our overflow

document to get printed on NEXT page

Read only

0 Likes
758

Hi Sanju,

Please try to put PROTECT...ENDPROTECT in your window that displays your list. Also, try to put in a code where if certain records are met(e.g. 20 records have already been printed in your first page) then it would call a new page by using code:

CALL FUNCTION 'CONTROL_FORM'

EXPORTING

command = 'NEW-PAGE'.

Regards!

Read only

vinod_gunaware2
Active Contributor
0 Likes
758

On the Terms & Conditions page, Change the Page counter mode to <b>'HOLD'</b> to keep the page counter from incrementing when you print the Term & Conditions.

It is possible to print in the duplex mode.

Go to SPAD ,

take output devices .

Choose your output device ,

double click

take the output attributes.

Give the print mode as Duplex.

Your printer also should be set for the duplex mode.

regards

vinod

Read only

0 Likes
758

HI Vinod

SPAD will be usefull at time of printing document

for duplex,my issue is how i can save my document

that is missed because of terms and condition page,

i used protect and endprotect,but that didn't work,

only option LEFT is to try NEW-PAGE,can any budy tell

me of how that will help me