Within an ABAP program, how can you check if another job with a particular job name is running? For instance, in my ABAP program, I want to see if there's a job called 'UPDATE_FILE' running. Is there a way to do this?
Requires Free Membership to View
When you register, you will start receiving targeted emails from my award-winning team of editorial writers. Our goal is to keep you informed on the hottest topics and biggest challenges faced by SAP professionals today.
Hannah Smalltree, Editorial DirectorYou can query table TBTCO (Job Status Overview) and determine if the value
of the field "STATUS" is 'R' for active or running for the
JOBNAME='UPDATE_FILE'.
Possible values in "STATUS" field are:
P Scheduled
S Released
A Cancelled
R Active/Running
F Ready
I believe this answers your questions. Please let me know.
This was first published in June 2002