SAP TICL130 Tables of Claim System Table data and field list

TICL130 is a standard SAP Table which is used to store Tables of Claim System data in SAP systems, such as SAP R/3, S/4HANA, depending on the version and release level.

The TICL130 table consists of various fields, each holding specific information or linking keys about Tables of Claim System data available in SAP. These include SHADOWTAB (Shadow Table), TABTYPE (Table Type), PTABNAME (Superior Table), TABLEGRP (Table Group)... 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. .

TICL130 table Technical Details:

Delivery Class: E - Control table, SAP and customer have separate key areas
Display/Maintenance via tcode SM30: Display/Maintenance Allowed but with Restrictions
SAP enhancement categories: Can be enhanced (character-type)


SAP TICL130 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 TICL130 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 Name TABNAMECHAR30Assigned to domainAS4TABDTB
SHADOWTABShadow Table ICL_STABNAMECHAR30Assigned to domainAS4TAB
TABTYPETable Type ICL_TABTYPECHAR1ICL_TABTYPE
PTABNAMESuperior Table ICL_PTABNAMECHAR30TICL130AS4TAB
TABLEGRPTable Group ICL_TABLEGRPCHAR1ICL_TABLEGRP
SPECLTABSpecialization Table ICL_SPECLTABCHAR1XFELD
ARCHIVEFlag: Archive Table? ICL_ARCHIVECHAR1XFELD
VTABNAMEVersioning Header Table ICL_VTABNAMECHAR30Assigned to domainAS4TAB
VIEWNAMEName of Table/View for Extended Table Maintenance ICL_VIM_NAMECHAR30Assigned to domainVIM_NAME
ERRMESGMessage number MSGNRCHAR3Assigned to domainMSGNR
MSGCLASSApplication Area ARBGBCHAR20Assigned to domainARBGBMAG
FM_NAME_CHECKKEYFunction Module for Determining Check Table Key ICL_HI_FM_CHECKKEY_GETCHAR30Assigned to domainFUNCNAME
TABNAME_REFName of Reference Table with Same Key ICL_HI_TABNAME_REFCHAR30Assigned to domainAS4TAB
XOBSOLETEObsolete ICL_XOBSOLETECHAR1XFELD

Key field Non-key field



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

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

SELECT SINGLE *
FROM TICL130
INTO CORRESPONDING FIELDS OF WA_TICL130
WHERE...

How to access SAP table TICL130

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

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