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

Suppress save button

0 Likes
503

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

2 REPLIES 2
Read only

Former Member
0 Likes
466

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

Read only

vinoth_aruldass
Contributor
0 Likes
466

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.