cancel
Showing results for 
Search instead for 
Did you mean: 

How to generate multiple copies for printing using PPF classes/methods?

Former Member
0 Kudos

Hi,

My requirement is to print multiple copies of a form depending on value from custom table.Usually in PPF(Post processing Framework), it is configuration driven, But here I am using a custom table to set the No of copies.Is there any class method, to trigger multiple copies of the form to spool?

I am using CL_TRIGGER_PPF-EXECUTE to trigger the form.

Thanks,

Preethi

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Hi,

Tried with the class  - cl_bcs_ppf  as below , it works !

  DATA :

   lo_medium TYPE REF TO cl_bcs_ppf.

CALL METHOD lo_medium-> SET_PRINT_COPIES
                EXPORTING
                  I_PRINT_COPIES = 3. " No of copies required      

Answers (0)