on 2008 Feb 12 11:26 AM
Dear all,
How to know whether a report is running in background or not..
Regards
Jiku
hi
good
you can check it on se37.
thanks
mrutyun^
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
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.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
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.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
check in SM37 ..
check for the status against the job .. if it's in "Active"
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
there is a system variable sy-batch....
IF sy-batch = 'X'.
report is running in background.
else.
report is running online.
endif.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
User | Count |
---|---|
104 | |
10 | |
8 | |
7 | |
4 | |
4 | |
3 | |
3 | |
3 | |
3 |
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.