cancel
Showing results for 
Search instead for 
Did you mean: 

2 copies of all the pages in SAP script.

Former Member
0 Kudos

Hi,

How do I print 2 copies of all the pages in SAP script.

Thanks,

Accepted Solutions (0)

Answers (2)

Answers (2)

Former Member
0 Kudos

Please try assigning number of copies in ITCPO-TDCOPIES in OPEN_FORM in OPTIONS parameter.

FredericGirod
Active Contributor
0 Kudos

Maybe your question is not really that, maybe you would like to print each time two example of the forms.

If yes, use the condition, it's customizing, nothing to do with Sapscript or smartforms.

If you don't know condition, it depends of the forms, for example: delivery --> VV22

Fred

Former Member
0 Kudos

Yes Fred you are right, I want each time two example of the form but in the second output text COPY should be printed in the backgroung of the test.

Former Member
0 Kudos

hi santosh,

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.

This should suffice your requirment.reward points if it helps

Thanks and Regards,

Anoop