Can paper size be defined on condition in SAPscript?
I have an SAPscript question for you. Could paper size be defined on condition, for instance, per plant? If it is one plant print on A4 otherwise print on Letter size?
1.) Create the letter-size form, let's say: Z_DELNOTE.
2.) Try to make the first form flexible enough so that it can serve as a 'master form', with the only required difference being paper size.
3.) Copy that form into a new one, Z_DELNOTE_A4 and convert the paper size to A4. Adjust any windows as needed.
4.) Set up output config to point to the first form.
5.) In your print program, insert logic before the OPEN_FORM to append '_A4' to the form name field when appropriate (e.g. based on plant).
6.) Perform all subsequent changes to the first form and overlay the second one as in step 3.
I hope that answers your question.