Application Development 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: 

Can you tel me the exact status values for TBTCO table

Former Member
0 Kudos

Hi Experts,

Can you help me any one to know about "Status" field in TBTCO table.

what is the meanings of this status values.

1.P.

2.S.

3.F.

4.R

5.Y

6.A.

7.Z

Can you tell me any function module to find status for the program and for the jobname.

Thanks.

Sailu

5 REPLIES 5

Former Member
0 Kudos

Hi,

Just used the where used list and found INCLUDE LBTCHDEF.

Check it. seems clear

btc_running       LIKE tbtco-status VALUE 'R',
  btc_ready         LIKE tbtco-status VALUE 'Y',
  btc_scheduled     LIKE tbtco-status VALUE 'P',
  btc_intercepted   TYPE btcstatus VALUE btc_scheduled,
  btc_released      LIKE tbtco-status VALUE 'S',
  btc_aborted       LIKE tbtco-status VALUE 'A',
  btc_finished      LIKE tbtco-status VALUE 'F',
  btc_put_active    LIKE tbtco-status VALUE 'Z',
  btc_unknown_state LIKE tbtco-status VALUE 'X'.

Regards

former_member183990
Active Contributor
0 Kudos

u can find the job status

no need of using function module for this purpose

from table only u can get that

if at all u need u can use this

BP_JOB_STATUS_GET

in active tab of SM37

P=processed

s = scheduled

F=failed

R=ready

cheers

s.janagar

Edited by: Janagar Sundaramoorthy Nadar on May 15, 2009 10:24 AM

Former Member
0 Kudos

Hi,

I know onlu some if them.

SCHEDUL

RUNNING

READY

PRELIM

FINISHED

ABORTED

Regards

GauthamV
Active Contributor
0 Kudos

You can get them from supplementary documentation of data element BTCSTATUS.



Mark the statuses that you wish to include in the overview.

The statuses have the following meanings:

Scheduled:  not yet been released to run.
Released:  released to run.
Ready:   start date and time have come:  awaiting execution.
Active:  currently running.
After a system failure, can indicate that a job was interrupted by the failure 
and must be manually restarted.
Finished:  successfully completed.
Aborted:  not successfully completed.

0 Kudos

Let have a look also to FM SHOW_JOBSTATE