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 info

Former Member
0 Likes
625

HI

I have submitted a job. I need to find whther the job is released. can you please tell me in which table it is stored ?

Thanks

Sakthi

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
603

Hi,

Use below logic....

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.

4 REPLIES 4
Read only

Former Member
0 Likes
603

Hi,

Try table TBTCO

Check the Job Status field .

Cheers

Edited by: Aditya Laud on Feb 26, 2008 1:02 AM

Read only

Former Member
0 Likes
604

Hi,

Use below logic....

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.

Read only

Former Member
0 Likes
603

The table is TBTCO and the status field is to be checked. The field name is STATUS for checking the job status.

Thanks and Regards

Swarna

Read only

Former Member
0 Likes
603

Hi,

please check the following tables.

these are the tables which holds data for complete back ground job scheduling.

TBTCO : Job status overview table.

TBTCP : Batch job step overview.

TFDIR : Function Module ...

BTCUED : Description of user event IDs for background processing ...

Regards,

swami.