‎2006 Jun 13 7:15 AM
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
‎2006 Jun 13 9:17 AM
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
‎2006 Jun 13 10:25 AM
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
‎2006 Jun 13 10:32 AM
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
‎2006 Jun 13 10:43 AM
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
‎2006 Jun 13 10:56 AM
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!
‎2006 Jun 13 10:51 AM
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
‎2006 Jun 13 12:30 PM
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