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

Error in GUI_DOWNLOAD in background processing

Barada_Swain
Participant
0 Likes
487

Hi All,

We have a program that is using GUI_DOWNLOAD to download the results in text and .dbf format. In foreground it is working fine.But in background the job is getting cancelled with a log that "Error in Downloading file."

Please let me know if there is any solution for this.

3 REPLIES 3
Read only

Former Member
0 Likes
396

Hi,

We can not use these function module in the background schedule, this will give the error in the background schedule, we can download to the Application server in the background , but we can not Download the data to the Desktop(Presentation server) in the background

Regards

Sudheer

Read only

Former Member
0 Likes
396

Hi,

GUI_DOWNLOAD does not work properly in the background.

You can change the GUI_DOWNLOAD by

'open dataset .. for output... ' and 'close dataset..' and use 'transfer..' to fill up the file.

regards,

Rolf

Read only

Barada_Swain
Participant
0 Likes
396

Thanks guys for the answers