TBTCO SAP (Job Status Overview Table) Table details

Dictionary Type: Table
Description: Job Status Overview Table




ABAP Code to SELECT data from TBTCO
Related tables to TBTCO
Access table TBTCO




Table field list including key, data, relationships and ABAP select examples

TBTCO is a standard SAP Table which is used to store Job Status Overview Table data and is available within R/3 SAP systems depending on the version and release level.

The TBTCO table consists of various fields, each holding specific information or linking keys about Job Status Overview Table data available in SAP. These include JOBCOUNT (Job ID), JOBGROUP (Summary of jobs for a group), INTREPORT (Name of internal report for batch job), STEPCOUNT (Job step ID number.).. See below for full list along with technical details, documentation, text table, check tables, foreign key relationships, conversion routines, relevant tcodes and example ABAP select code etc. .

Delivery Class: L - Table for storing temporary data, is delivered empty
Display/Maintenance via tcode SM30: Display/Maintenance Allowed but with Restrictions
SAP enhancement categories: Not classified


SAP TBTCO table fields - Full list of fields found in SAP data dictionary

Field Description Data Element Data Type length (Dec) Check table Conversion Routine Domain Name MemoryID SHLP
JOBNAMEBackground job name BTCJOBCHAR32CHAR32
JOBCOUNTJob ID BTCJOBCNTCHAR8CHAR8
JOBGROUPSummary of jobs for a group BTCJOBGRPCHAR12CHAR12
INTREPORTName of internal report for batch job BTCREPCHAR40PROGNAME
STEPCOUNTJob step ID number. BTCSTEPCNTINT410
SDLSTRTDTPlanned Start Date for Background Job BTCSDATEDATS8SYDATS
SDLSTRTTMPlanned start time for background Job BTCSTIMETIMS6SYTIME
BTCSYSTEMTarget System to Run Background Job BTCTGTSYSCHAR32TEXT32
SDLDATEDate of job/step scheduling BTCSDLDATEDATS8SYDATS
SDLTIMETime of a scheduled job/step BTCSDLTIMETIMS6SYTIME
SDLUNAMEInitiator of job/step scheduling BTCSDLNMCHAR12CHAR12
LASTCHDATEDate of last job change BTCJCHDATEDATS8SYDATS
LASTCHTIMETime of last job change BTCJCHTIMETIMS6SYTIME
LASTCHNAMELast job change made by BTCJCHNMCHAR12CHAR12
RELDATERelease Date for Background Scheduling BTCRELDTDATS8SYDATS
RELTIMERelease time of scheduled background job BTCRELTMTIMS6SYTIME
RELUNAMEUser that released scheduled batch job BTCRELNMCHAR12CHAR12
STRTDATEJob start date BTCXDATEDATS8SYDATS
STRTTIMEBatch job start time BTCXTIMETIMS6SYTIME
ENDDATEJob start date BTCXDATEDATS8SYDATS
ENDTIMEBatch job start time BTCXTIMETIMS6SYTIME
PRDMINSDuration period (in minutes) for a batch job BTCPMINNUMC2NUM02
PRDHOURSDuration period (in hours) for a batch job BTCPHOURNUMC2NUM02
PRDDAYSDuration (in days) of DBA action BTCPDAYNUMC3NUM03
PRDWEEKSDuration period (in weeks) for a batch job BTCPWEEKNUMC2NUM02
PRDMONTHSDuration period (in months) for a batch job BTCPMNTHNUMC2NUM02
PERIODICPeriodic Jobs Indicator BTCPFLAGCHAR1CHAR1
DELANFREPJob deletion indicator after processing BTCDELFLAGCHAR1CHAR1
EMERGMODEEmergency Job operation indicator (content 'X') BTCEFLAGCHAR1CHAR1
STATUSState of Background Job BTCSTATUSCHAR1CHAR1
NEWFLAGNew job ID creation flag BTCNEWFLAGCHAR1CHAR1
AUTHCKNAMBackground User Name for Authorization Check BTCAUTHNAMCHAR12CHAR12
AUTHCKMANBackground client for authorization check BTCAUTHMANCLNT3Assigned to domainMANDT
SUCCNUMNumber of successor job(s) BTCSNUMINT410
PREDNUMNumber of previous jobs BTCPNUMINT410
JOBLOGTemSe object name RSTSONAMECHAR20CHAR20
LASTSTRTDTLatest Execution Date for a Background Job BTCLSDATEDATS8SYDATS
LASTSTRTTMLatest Execution Time for Background Job BTCLSTIMETIMS6SYTIME
WPNUMBERWork process number BTCWPNOINT410
WPPROCIDWork process ID BTCWPPIDINT410
EVENTIDBackground Processing Event BTCEVENTIDCHAR32CHAR32
EVENTPARMBackground Event Parameters (Such as, Jobname/Jobcount) BTCEVTPARMCHAR64TEXT64
BTCSYSREAXTarget System to Run Background Job BTCTGTSYSCHAR32TEXT32
JOBCLASSJob classification BTCJOBCLASCHAR1CHAR1
PRIORITYJob priority BTCJOBPRIOINT410
EVENTCOUNTEvent number BTCEVTCNTCHAR8CHAR8
CHECKSTATJob status check indicator for subsequent job start BTCCKSTATCHAR1CHAR1
CALENDARIDFactory Calendar ID for Background Processing BTCCALIDCHAR2CHAR2
PRDBEHAVPeriod behavior of jobs on non-workdays BTCPRDBHVCHAR1CHAR1
EXECSERVERServer name BTCSRVNAMECHAR20TEXT20
EOMCORRECTCorrection field for calc. job execution (end-of-mth, cal.) BTCEOMCORRINT410
CALCORRECTCorrection field for calc. job execution (end-of-mth, cal.) BTCEOMCORRINT410
REAXSERVERServer name BTCSRVNAMECHAR20TEXT20
RECLOGSYSLogical system LOGSYSCHAR10Assigned to domainALPHALOGSYS
RECOBJTYPEObject Type SWO_OBJTYPCHAR10Assigned to domainOJ_NAMEOBJ
RECOBJKEYObject key SWO_TYPEIDCHAR70SWO_TYPEID
RECDESCRIBDescribe flag SWO_DESCRBCHAR10CHAR10
TGTSRVGRPServer Group Name Background Processing BPSRVGRPNCHAR40CHAR40

Key field Non-key field



How do I retrieve data from SAP table TBTCO using ABAP code

The following ABAP code Example will allow you to do a basic selection on TBTCO to SELECT all data from the table
DATA: WA_TBTCO TYPE TBTCO.

SELECT SINGLE *
FROM TBTCO
INTO CORRESPONDING FIELDS OF WA_TBTCO
WHERE...

How to access SAP table TBTCO

Within an ECC or HANA version of SAP you can also view further information about TBTCO and the data within it using relevant transactions such as

SE11 (ABAP Dictionary Maintenance)
SM30 (Maintain Table Data)
SE80 (Object Navigator)
SE16 (Data Browser).


Search for further information about these or an SAP related objects



Comments on this SAP object

What made you want to lookup this SAP object? Please tell us what you were looking for and anything you would like to be included on this page!