cancel
Showing results for 
Search instead for 
Did you mean: 

SAPscript download from ITS

Former Member
0 Kudos

Hi,

I'm using following code in a transaction to download a sapscript form to frontend and it is working fine - but when I call the same transaction in a function module from ITS the form is not downloaded.

CALL METHOD lcl_cls->gui_download

EXPORTING

bin_filesize = v_size

filename = v_name

filetype = c_bin

CHANGING

data_tab = i_content_bin.

where lcl_cls refers to class cl_gui_frontend_services.

What could be the reason for this. Do I need to pass some other parameters in method gui_download?

Regards.

Vishwas Madhuvarshi.

Accepted Solutions (0)

Answers (2)

Answers (2)

Former Member
0 Kudos
former_member228142
Active Contributor
0 Kudos

Hi vishwas,

If you run your transaction in webgui, the only requirement is to have a SUN Java runtime environment installed in the browser.

Best regards,

Klaus

Former Member
0 Kudos

Hi Klaus,

I am doing this right now but I want to do the download entirely through function module without calling the transaction in frontend as it does in sapgui. Any idea for this ?

Thanks.

vishwas.

Former Member
0 Kudos

Hi Azaz Ali,

The solution suggested is for case when one needs to transport a form object from one sap system to another and there is no transport link available. I need to download a form from ITS to local machine and abap menus will not be available there.

Thanks.

Vishwas.