SAP TICNV DD: Status of Incremental Conversions Table data and field list

TICNV is a standard SAP Table which is used to store DD: Status of Incremental Conversions data in SAP systems, such as SAP R/3, S/4HANA, depending on the version and release level.

The TICNV table consists of various fields, each holding specific information or linking keys about DD: Status of Incremental Conversions data available in SAP. These include CNVID (Unique ID of table conversion), CNVCONTEXT (Context in which the conversion runs), SCENARIO (Sscenario (graph) of a conversion), SCHEMA1 (Starting Schema)... 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. .

TICNV table Technical Details:

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: Cannot Be Enhanced


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

Looking for S/4HANA specific information? Click here to explore the details, fields and extensibility available for this table in the SAP S/4HANA version of the TICNV table. Also check whether the table still exists or has been transformed into a CDS view as part of the HANA simplifications.
Field Description Data Element Data Type length (Dec) Check table Conversion Routine Domain Name MemoryID SHLP
TABNAMETable for incremental conversion ICNVTABCHAR30ICNVTAB
CNVIDUnique ID of table conversion CNVIDCHAR50CHAR50
CNVCONTEXTContext in which the conversion runs CNVCONTEXTCHAR10CNVCONTEXT
SCENARIOSscenario (graph) of a conversion DDSCENARIOCHAR10DDSCENARIO
SCHEMA1 Starting Schema0
SCHEMA2 Target Schema0
EXECMODE DD: Entry for Background Processing or Upgrade0
SEVERITY DD: Status of an Entry for Mass Processing0
SCANNRRow Index of Internal Tables SYTABIXINT410SYST_LONG
PROCCLASSSchedulable process classes ISPCLASSCHAR5ISPCLASS
M_RUN_TIMEMaximum runtime of conversion process in minutes M_RUN_TIMEINT410
M_LOCK_CNTMaximum number of locks which the conversion process holds M_LOCK_CNTINT410
M_PROC_NUMMaximum number of parallel conversion processes M_PROC_NUMINT25INT2
ARRAY_SIZESize of data packet for mass processing ARRAY_SIZEINT410
SCHEMAREPTemplate report for incremental table conversion DDISCHEMACHAR40CHAR40
FIRSTSCHEMSchema for first conversion run DDISFIRSTCHAR30CHAR30
SCHEMAREP2Template report for incremental table conversion DDISCHEMACHAR40CHAR40
SECSCHEMSchema for second and all subsequent conversion runs DDISECONDCHAR30CHAR30
SCHEMAREP3Template report for incremental table conversion DDISCHEMACHAR40CHAR40
THIRDSCHEMSchema for last conversion run DDISLASTCHAR30CHAR30
CLIENT_ADDID for added client CLIENT_ADDCHAR1CHAR1
PDATESystem Date SYDATUMDATS8SYDATS
PTIMESystem Time SYUZEITTIMS6SYTIME
PTIME_OFFDelay until conversion process is started PTIME_OFFNUMC3PTIME_POFF
CNVSTEPRow Index of Internal Tables SYTABIXINT410SYST_LONG
CNVSTATEStatus of the incremental conversion DDICNVSTATCHAR10DDICNVSTAT
POSTSTATENext status of incremental conversion DDINEXSTATCHAR10DDICNVSTAT
TARSTATENext status of incremental conversion DDINEXSTATCHAR10DDICNVSTAT
CNVFIELDIndicator field for incremental conversion DDINDIKATOCHAR30CHAR30
CPFIELDIndicator field for incremental conversion DDINDIKATOCHAR30CHAR30
BASETABBase table of incremental conversion DDBASETABCHAR30ICNVTAB
LOGTABLogging table for incremental conversion DDLOGTABCHAR30ICNVTAB
LOGTAB2Logging table for incremental conversion DDLOGTABCHAR30ICNVTAB
TABNAMESLogical source tables of incremental conversion DDSTABSCHAR255CHAR255
TABALIASLogical source tables of incremental conversion DDSTABSCHAR255CHAR255
TARGETTABTarget container for incremental conversion DDTARGETCHAR30ICNVTAB
TMPTABSLogical target tables of incremental conversion DDTTABSCHAR255CHAR255
KEYVIEW Name of SAP Table View0
VIEWINDEX 0
PROCNAME 0
TRG_UPD1Name of update trigger DDIUPDTRICHAR30CHAR30
TRG_DEL1Name of delete trigger DDIDELTRICHAR30CHAR30
TRG_INS1Name of current insert trigger DDIINSTRICHAR30OBJECTNAME
TRG_UPD2Name of update trigger DDIUPDTRICHAR30CHAR30
TRG_UPD3Name of update trigger DDIUPDTRICHAR30CHAR30
TRG_INS2Name of current insert trigger DDIINSTRICHAR30OBJECTNAME
STATEREPIDDD: Report for including conversion exits DDCREPIDCHAR40CHAR40
TAB_WIDTH Table Width (Nametab) in Bytes0
CDATEDate DATUMDATS8DATUM
CTIMETime UZEITTIMS6UZEIT
CUSERUser Name UNAMECHAR12UNAME
MIGDESTLogical Destination (Specified in Function Call) RFCDESTCHAR32Assigned to domainRFCDESTRFCF4_RFCDESTYPEALL
MIGREPTemplate report for incremental table conversion DDISCHEMACHAR40CHAR40
MIGSCHEMSchema for incremental migration DDISMIGCHAR30CHAR30

Key field Non-key field



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

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

SELECT SINGLE *
FROM TICNV
INTO CORRESPONDING FIELDS OF WA_TICNV
WHERE...

How to access SAP table TICNV

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

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