‎2008 Feb 26 6:23 AM
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.
‎2008 Feb 26 6:52 AM
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.
‎2008 Feb 26 6:30 AM
‎2008 Feb 26 6:32 AM
‎2008 Feb 26 6:52 AM
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.