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

OBJECT ORIENTED REPORT EXECUTING BACKGROUND?

Former Member
0 Likes
536

In object oriented alv reports why gui controls not supported back ground jobs?

3 REPLIES 3
Read only

FredericGirod
Active Contributor
0 Likes
467

Hi,

in background you didn't have gui .. so you can't control it

did you try to display an ALV Grid or Tree in background. Instead of a custom container try to use a docking container

regards

Fred

Read only

Former Member
0 Likes
467

Hi,

The OO report you are referring would be using a screen...

the container requires a connection to the frontend which cannot be reached in background.

There is a solution with docking container given by peter in the clog below have alook.

Regards

Read only

Former Member
0 Likes
467

Because there is no active GUI when you are running in background.

All GUI functions make use of the presentation server when executing which is not available when you run a program in background.

However, there are alternatives for most of the GUI functions to perform the same task in background.

For example, if instead of GUI_UPLOAD/GUI_DOWNLOAD functions, you can use OPEN/READ/WRITE/CLOSE dataset statement to perform the same function.