‎2006 Mar 14 8:11 PM
Hi Group,
i need to develop a sapscript for duplex printing, wherein front page is Landscape oriented n back page is Portrait.
1. Is it possible??
2. Please explain briefly the steps required for DUPLEX printing using SAPSCRIPT/SMARTFORMS.
ur valuable inputs awaited.
Thanks & Regards,
Bikash
‎2006 Mar 14 8:16 PM
Hi Bikesh,
your Requirement :
Front page is Landscape oriented n back page is Portrait
---I am not sure about Scripts. But you can do it in smartforms.
YOu can set page orientation at
PAGE> Output Options> Page format (Landscape/Ptrait)
--> Print Mode --D for Duplex.
Regards,
Lanka
‎2006 Mar 14 8:14 PM
Hi,
Yes you can get the duplex printing from both script & smartform provided your printer has the settings.
In the script
Page standard attributes,you have print mode.give it as "D".
In smartforms
Page-->Output options,it has the same thing.
‎2006 Mar 14 8:16 PM
Hi Bikesh,
your Requirement :
Front page is Landscape oriented n back page is Portrait
---I am not sure about Scripts. But you can do it in smartforms.
YOu can set page orientation at
PAGE> Output Options> Page format (Landscape/Ptrait)
--> Print Mode --D for Duplex.
Regards,
Lanka
‎2006 Mar 14 10:04 PM
In the smart forms its simple since you can set the orientation at Page level.
Define two pages front page with Landscape oriented n back page is Portrait.
But for the scripts orientation is not defined at page level, entire form has same orientation, its either portrait or landscape. To get the different orientation for the back page, define a new script/form which contains back page with portrait orientation. Call this form using start_form function module from first page layout printing program.
Hope this helps you.
Thanks,
Vamshi
‎2006 Mar 15 9:57 AM
Vamshi,
if i generate 2 sapscripts for my document, is it possible that i get these 2 to get printed in the same sheet??, ie via duplex printing??? if yes, then how??
Thanks & Regards,
Bikash
‎2006 Mar 15 8:23 PM
You will have two scripts but only one print program.
You can call two scripts in one program as follow:
open_form.
.....
for the back page
start_form.
....
end_form.
....
close_form.
I did not work on duplex, but as per documentation you need to set print mode for front page( first script)
as duplex the back page will be default i.e, space.
Thanks,
Vamshi