‎2006 Jul 31 10:14 AM
I need to print two pages in a script.How to assign first page as potrait and second page as landscape for that two pages.
regards
pavan
‎2006 Jul 31 10:16 AM
Hi pavan,
1. In sapscript, its not possible,
bcos portrait/landscape
setting
is a BASIC SETTING
2. which applies to the whole script
3. (and not page wise)
4. This problem is tackled by smartforms.
regards,
amit m.
‎2006 Jul 31 10:16 AM
kindly confirm whether you need different Page orientations or Formats..?
Orientation - Portrait or Landscape..
Format - A4 or Letter..
‎2006 Jul 31 10:21 AM
‎2006 Jul 31 10:24 AM
Hi Pavan,
In One sapscript form its not possible.I think you will have to create two sapscript form with different orientation and call one after the other.
Regards,
Mukesh Kumar
‎2006 Jul 31 10:18 AM
Hi Pavan,
You cannot do such type of setting in sapscript as it applies to all pages.
‎2007 Feb 28 5:02 AM
Hi Pavan,
I got your point. First create layout set in the potrait format and next create another form in the landscape format. Now open the print program. Your femiliar with <b>START_FORM</b>. so we first call function START_FORM for potrait (Give u r potrait form name) and end that with END_FORM and again call function START_FORM for land scape(give u r land scape form name) and close that with END_FORM. Now we can print both the forms at a time. start_form is mainly using for start the new form.
Hope this will help you.
Regards,
Ravi.
‎2007 Feb 28 5:10 AM
HI pavan ,,
i am also agreeing with Ravi..
wat he said is correct,
You cannot make it in a single form,For this you need to take two forms but they should be in single SPOOL request,
for this you wat u need to do is
<b>First write OPEN_FORM (with out form name)
START_FORM(With First form in which page format is Portrait)
END_FORM
START_FORM(With Second form in which page format is Landscape)
END_FORM
and finally
CLOSE_FORM.</b>