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

report in background

Former Member
0 Likes
563

Hi all

is there a way for a report to understand if it's running in background or in foreground?

I try to see the SY variables, but I cannot see nothing that seems to be for my case ...

thanks

gabriele

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
533

when sy-batch is set is running in background

Hi all

is there a way for a report to understand if it's running in background or in foreground?

I try to see the SY variables, but I cannot see nothing that seems to be for my case ...

thanks

gabriele

3 REPLIES 3
Read only

Former Member
0 Likes
534

when sy-batch is set is running in background

Read only

Former Member
0 Likes
533

You can check the report running in background using transaction code SM37.

Read only

Former Member
0 Likes
533

Hi...

all the SY-* variables are maintained in SYST table


if Sy-batch = 'X'.
   "report or job running in back ground
Else.
  "running in foreground.
Endif.

Prabhudas