CIF_V_OP SAP (CIF: Information About Jobs) Structure details

Dictionary Type: Structure
Description: CIF: Information About Jobs




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




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

CIF_V_OP 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 "CIF: Information About Jobs" 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_CIF_V_OP TYPE CIF_V_OP.

The CIF_V_OP table consists of various fields, each holding specific information or linking keys about CIF: Information About Jobs data available in SAP. These include JOBCOUNT (Job ID), JOBGROUP (Summary of jobs for a group), INTREPORT (CIF: Name of the Internal Report for a 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:
Display/Maintenance via tcode SM30: Display/Maintenance Allowed but with Restrictions
SAP enhancement categories: Not classified


SAP CIF_V_OP 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
JOBNAMEBackground job name BTCJOBCHAR32CHAR32
JOBCOUNTJob ID BTCJOBCNTCHAR8CHAR8
JOBGROUPSummary of jobs for a group BTCJOBGRPCHAR12CHAR12
INTREPORTCIF: Name of the Internal Report for a Batch Job CIFBTCREPCHAR40CHAR40
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
TGTSRVGRPCIF: Name of the Internal Report for a Batch Job CIFBTCREPCHAR40CHAR40
PROGNAMEProgram name within a step (e.g. report) BTCPROGCHAR40PROGNAME
XPGPROGName of external program (possibly with access path) BTCXPGPGMCHAR128TEXT128
EXTCMDLogical command name SXPGLOGCMDCHAR18CHAR18

Key field Non-key field



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

As CIF_V_OP 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 CIF_V_OP as there is no data to select.

How to access SAP table CIF_V_OP

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