Application Development Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 

How to print same Page number of times

Former Member
0 Kudos

Hi All,

  I have one requirement in Smartforms. 

Once I execute the transaction and give the input and press Execute  like below.

In the above Image I have given number of Copies as 5. If suppose the print form is in 2 pages Then it Prints all those 2 pages 5 times one after another. But I need to print first Page have to print 5 times after completion of first page second page have to print 5 times. How should I do?

Please help me on this issue.

Regards

Murali

1 ACCEPTED SOLUTION

nabheetscn
Active Contributor
0 Kudos

Hi Murali

You can do as follow mark the checkbox as shown below

OUTPUT_OPTIONS-TDGROUP as X

Nabheet

7 REPLIES 7

nabheetscn
Active Contributor
0 Kudos

Hi Murali

You can do as follow mark the checkbox as shown below

OUTPUT_OPTIONS-TDGROUP as X

Nabheet

0 Kudos

Hi Nabheet,

Actually this is not Customized Program. For Standard transaction J1iA101. They have set NACE. And standard Script there. If i Press execute then there is no Group option. How it will come.

Regards Murali

0 Kudos

Which application and which output type is it?

0 Kudos

Output Device is LP01 and Application means what?

0 Kudos

Please check output type configuration in nace I wanted to know how to navigate in NACE to your output type ..??

0 Kudos

Hi Nabheet,

   Actually in that client it is not asking Group check box for any print output. In another client I have seen that Group Check Box. So that I asked to BASIS Consultant about this. They told that they will rectify that one. If not solved then I will post again about this.

Thanks to all for ur Replies.

Regards

Murali

former_member184569
Active Contributor
0 Kudos

Hi Murali,

set the Output_Options-TDCOPIES to the number of copies required.

  DATA: ls_control_param      TYPE ssfctrlop,

        ls_composer_param     TYPE ssfcompop.

      ls_composer_param-TDCOPIES = 5.

CALL SMARTFORM  'XXXX'

         EXPORTING

           control_parameters = ls_control_param

           output_options     = ls_composer_param ...