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

table

Former Member
0 Likes
529

Hi abapers,

Is there any table which maintains the status of all the programs that are executing currently.

By this what I mean is suppose a z program zm is executing then can i come to know is that

program executing or not .

reward point for all useful ans.

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
511

Madhavi,

Check in Table "TBTCO"

status values.

btc_running LIKE tbtco-status VALUE 'R',

btc_ready LIKE tbtco-status VALUE 'Y',

btc_scheduled LIKE tbtco-status VALUE 'P',

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',

From table "TBTCO" Write select statement and check the status above.

3 REPLIES 3
Read only

Former Member
0 Likes
511

Check in Table "TBTCO

Reward point please...

Read only

Former Member
0 Likes
511

hi,

Try out this,

TNAPR

Hope this helps.

Arunsri

Read only

Former Member
0 Likes
512

Madhavi,

Check in Table "TBTCO"

status values.

btc_running LIKE tbtco-status VALUE 'R',

btc_ready LIKE tbtco-status VALUE 'Y',

btc_scheduled LIKE tbtco-status VALUE 'P',

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',

From table "TBTCO" Write select statement and check the status above.