2008 Feb 25 4:34 AM
Hi,
Can any body tell me how to supress the dialog screen while viewing print preview in smartform.
Regards
Nishant
Hi,
Can any body tell me how to supress the dialog screen while viewing print preview in smartform.
Regards
Nishant
2008 Feb 25 4:38 AM
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.
2008 Feb 25 4:42 AM
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.
| User | Count |
|---|---|
| 6 | |
| 2 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |