Application Development 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: 

error using method cl_gui_frontend_services=>gui_download

Former Member
0 Kudos

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

Manohar2u
Active Contributor
0 Kudos

You cannot download using this guid_download method in background.

You need to use application server path, using datasets.

Regds

Manohar

Former Member
0 Kudos

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.

Former Member
0 Kudos

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.

Former Member
0 Kudos

thank you all,

i appreciat your time.