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 using method cl_gui_frontend_services=>gui_download

Former Member
0 Likes
830

hello all,

when i use this method not in the background it working great,

but when i try to use this method on the background,

i got the error: control_flush_error.

is anyone know what is the problem?

thanks in advanced.

dana.

hello all,

when i use this method not in the background it working great,

but when i try to use this method on the background,

i got the error: control_flush_error.

is anyone know what is the problem?

thanks in advanced.

dana.

4 REPLIES 4
Read only

Manohar2u
Active Contributor
0 Likes
708

You cannot download using this guid_download method in background.

You need to use application server path, using datasets.

Regds

Manohar

Read only

Former Member
0 Likes
708

Hi dana,

1. In background processing,

no GUI (front-end computer)

is avaialable.

2. Hence, all GUI methods, and FM

will fail.

3. For such purpose, we have to work with

files on application server (and not front-end server)

4. for that purpose we have to use

OPEN DATASET, TRANSFER, CLOSE DATASET commands.

(See F1 help on the syntax)

regards,

amit m.

Read only

Former Member
0 Likes
708

Hi dana,

1. In background processing,

no GUI (front-end computer)

is avaialable.

2. Hence, all GUI methods, and FM

will fail.

3. For such purpose, we have to work with

files on application server (and not front-end server)

4. for that purpose we have to use

OPEN DATASET, TRANSFER, CLOSE DATASET commands.

(See F1 help on the syntax)

regards,

amit m.

Read only

Former Member
0 Likes
708

thank you all,

i appreciat your time.