cancel
Showing results for 
Search instead for 
Did you mean: 

Background Report

Former Member
0 Kudos
65

Dear all,

How to know whether a report is running in background or not..

Regards

Jiku

Accepted Solutions (0)

Answers (5)

Answers (5)

Former Member
0 Kudos

hi

good

you can check it on se37.

thanks

mrutyun^

Former Member
0 Kudos

Hi,

There are two ways to check whether a program is running in background or not.

Check the batch system field, ie.. SY_BATCH. If it is set, the program is running in background, otherwise its not.

Also go to Tcode SM37,

1.Give the job name.

2. Select appropriate job status.

3.Execute.

It will give a list of the jobs and their current status.

Reward if helpful.

Regards.

Former Member
0 Kudos

Hi Jiku,

Use the system field Sy-batch ( system sets 'X' if the program is running on background ) or else

Go to SE37 tcode give job name and execute it.

Reward if it is useful,

Mahi.

Former Member
0 Kudos

check in SM37 ..

check for the status against the job .. if it's in "Active"

Former Member
0 Kudos

there is a system variable sy-batch....

IF sy-batch = 'X'.

report is running in background.

else.

report is running online.

endif.