‎2012 Dec 20 4:32 AM
Hi Expert,
I have a requirement where when executing RSTXSCRP to download script, if i give filename than save as pop should not come. How this can be done. Please suggest.
Thanks & Regards,
Mihir Kumar Jha
‎2012 Dec 20 4:43 AM
See the following link for your requirement
<external link removed>
Moderator Message - Instead of providing the link to the OP, direct him/her to Google it out.
Message was edited by: Suhas Saha
‎2012 Dec 20 4:51 AM
hi ,
You can acheive that by creating z program for that.
inside the RSTXSCRP program. there is one more program which is calling this f4 option is
RSTXR3TR.
and the function which is calling the f4 help for download is
call method guiobj->file_save_dialog
exporting default_extension = 'txt'
default_file_name = name
file_filter = filter
changing filename = name
path = path
fullpath = fullpath
user_action = uact.
if uact = guiobj->action_cancel.
cancel = 'X'. exit.
endif.
in your zprogram you need to exclude this function and execute you will not get that popup.
Hope this helps,
Vinoth.