F How to call smartforms without print dialog window | CodeTheta

How to call smartforms without print dialog window

November 10, 2025

Code Snippet:
DATA: wa_control_parameters TYPE ssfctrlop,
            wa_output_options TYPE ssfcompop.

wa_control_parameters-preview = 'X'.
wa_control_parameters-no_dialog = 'X'.
wa_output_options-tddest = 'LP01'.

Then pass the control parameter and output options to the following parameters where you actually called the smartforms using driver program

control_parameters = wa_control_parameters
output_options     = wa_output_options

IDE Used To Test This Code :SAP GUI.
Try this code in your computer for better understanding. Enjoy the code. If you have any Question you can contact us or mail us. We will reply you as soon as possible.

Post a Comment