Hi ABAP experts,
I have a requirement about print smartform quantity.
User want to add a field 'print qty.' into selection-screen.
If user input the field 'print qty.' to 5, the smartform should be printed 5 times when click button 'print'.
How can I achieve it? Need to change below code or change smartform?
MODULE user_command_9200 INPUT.
IF ok_code = c_print.
IF gv_flag IS INITIAL.
* Edit sf table
PERFORM f_edit_smart.
* Call smartforms
PERFORM f_call_smart.
ELSE.
LEAVE TO SCREEN 9300.
ENDIF.
ENDIF.
ENDMODULE.
Regards,
Steve