‎2007 Jun 21 2:32 PM
Dear gurus,
Here my requirement is, after triggering smartform immediatly it should not display dialogscreen for print. Instead of this it must display after pressing a button in the application tool bar. Is there any way to achieve above procedure.
Thanks and Regards
‎2007 Jun 21 2:35 PM
check OPTIONS of that SF
u will have field for no dialog.
Regards
Peram
‎2007 Jun 21 2:39 PM
Thanku very much prabhu,
sorry for troubling u again Could u please where exactly that option.
Thanks and Regards
‎2007 Jun 22 11:31 AM
‎2007 Jun 22 11:41 AM
‎2007 Jun 22 12:15 PM
DATA : control TYPE ssfctrlop.
DATA : output_options TYPE ssfcompop.
write a perform before calling the smartform. In that perform write
CONTROL-NO_DIALOG = ' '.
CONTROL-PREVIEW = 'X'.
And in the call function pass both the CONTROL and OUTPUT_OPTIONS
EG.
CALL FUNCTION FM_NAM
EXPORTING
CONTROL_PARAMETERS = CONTROL
OUTPUT_OPTIONS = OUTPUT_OPTIONS
USER_SETTINGS = SPACE
TABLES
ITAB_1 = ITAB.
Reward points if useful.
Thanks,
Saroj.