EMMA_JOBLOG_ALV SAP (Job Log Structures) Structure details

Dictionary Type: Structure
Description: Job Log Structures




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




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

EMMA_JOBLOG_ALV is a standard SAP Structure so does not store data like a database table does. It can be used to define the fields of other actual tables or to process "Job Log Structures" Information within sap ABAP programs.

This is done by declaring abap internal tables, work areas or database tables based on this Structure. These can then be used to store and process the required data appropriately.

i.e. DATA: wa_EMMA_JOBLOG_ALV TYPE EMMA_JOBLOG_ALV.

The EMMA_JOBLOG_ALV table consists of various fields, each holding specific information or linking keys about Job Log Structures data available in SAP. These include JOBNAME (Background job name), JOBCOUNT (Job ID), JOBGROUP (Summary of jobs for a group), INTREPORT (Name of internal report for batch job).. 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:
Display/Maintenance via tcode SM30: Display/Maintenance Allowed but with Restrictions
SAP enhancement categories: Can be enhanced (character-type or numeric)


SAP EMMA_JOBLOG_ALV structure 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
BOXSingle-Character Indicator CHAR1CHAR1CHAR1
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
STATUSTXTText field for step status display BTCSTATTXTCHAR15CHAR15
JOBCLASSTXTlonger job class name NEWJOBCLSCHAR20BPJOBCLS

Key field Non-key field



How do I retrieve data from SAP structure EMMA_JOBLOG_ALV using ABAP code?

As EMMA_JOBLOG_ALV is a database structure and not a table it does not store any data in the SAP data dictionary. The ABAP SELECT statement is therefore not appropriate and can not be performed on EMMA_JOBLOG_ALV as there is no data to select.

How to access SAP table EMMA_JOBLOG_ALV

Within an ECC or HANA version of SAP you can also view further information about EMMA_JOBLOG_ALV 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!