Orientations in SAPSCRIPT
-----Original Message-----
Hi, I have 2 pages for a Form in SAPscript . Can I have 2 different Orientations for 2 pages
If so , How ???? Thanks in Advance.
-----Reply Message-----
Ashwini, Not that I know of in the same layoutset...what you can do is create two layoutsets...one portrait, one landscape...then in the print program call each one individually. jjm -----Reply Message-----
Each form may only have a single orientation but you can create two forms and include them in the same spool output. In your ABAP program: 1. call function 'OPEN_FORM', don't pass a value in 'FORM' 2. call function 'START_FORM', include parameter 'FORM' passing the name of your first form 3. call function 'WRITE_FORM' as normal to output each element 4. call function 'END_FORM' 5. call function 'START_FORM', include parameter 'FORM' passing the name of your second form 6. call function 'WRITE_FORM' as normal to output each element 7. call function 'END_FORM' 8. call function 'CLOSE_FORM' Repeat the 'START_FORM' ... 'END_FORM' sequence as required. I have not tried using page numbers with this technique, I suspect that each form will restart at 1. Regards,
-----End of Reply Message-----
SAP Books
SAP Scripts Tips
ABAP Tips
Best regards,
All the site contents are Copyright © www.erpgreat.com
and the content authors. All rights reserved.
|