Application Development and Automation 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: 
Read only

smartform

Former Member
0 Likes
327

Hi,

Can any body tell me how to supress the dialog screen while viewing print preview in smartform.

Regards

Nishant

2 REPLIES 2
Read only

Former Member
0 Likes
298

Hi,

there is a option in control parameters option of smartform FM to supress dialog....

  DATA wa_control_parameters TYPE ssfctrlop.
  wa_control_parameters-no_dialog = 'X'.

  CALL FUNCTION v_form_name
    EXPORTING
      control_parameters         = wa_control_parameters
      .................
      ................

Do like above

Cheers,

jose.

Read only

Former Member
0 Likes
298

Hi,

DATA : device TYPE ssfctrlop.

INITIALIZATION.

device-no_dialog = c_x.

START-OF-SELECTION.

CALL FUNCTION ws_form_fname

EXPORTING

control_parameters = device

IMPORTING

job_output_info = ls_output_info

TABLES

i_final_ap = i_final_ap.