SAP ICLLITHEADER Litigation Table data and field list

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

The ICLLITHEADER table consists of various fields, each holding specific information or linking keys about Litigation data available in SAP. These include ACTIVE (Table entry is active (A) or in suspense (S)), CLAIM (Number of Claim), LITHGUID (Universal Unique Identifier of Litigation), CHANGETIME (Changed: Date + Time)... 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. .

ICLLITHEADER table Technical Details:

Delivery Class: A - Application table (master and transaction data)
Display/Maintenance via tcode SM30: Display/Maintenance Allowed but with Restrictions
SAP enhancement categories: Can be enhanced (character-type or numeric)


SAP ICLLITHEADER 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 ICLLITHEADER 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
CLIENTClient MANDTCLNT3T000MANDT
ACTIVETable entry is active (A) or in suspense (S) ICL_ACTIVECHAR1ICL_ACTIVE
CLAIMNumber of Claim ICL_CLAIMCHAR17ICLCLAIMALPHAICL_CLAIMICL_CLAIMICL_CLAIMNO_COL
LITHGUIDUniversal Unique Identifier of Litigation ICL_LITHGUIDCHAR32SYSUUID_C
CHANGETIMEChanged: Date + Time ICL_CHANGEUTC1DEC15TSTAMICL_TIMESTAMP
CHANGEDBYChanged By ICL_CHANGEDBYCHAR12USR02XUBNAME
DELETEDDatabase Line Status (Original, Changed, Deleted) ICL_RECSTATUSCHAR1ICL_RECSTATUS
LITH_NAMEUnique Technical Name of Litigation ICL_LITH_NAMECHAR10ICL_LITH_NAME
SUBOBJECTClaim Subobject ICL_SUBOBJECTCHAR16ICL_SUBOBJECT
LITTYPELitigation Type ICL_LITTYPECHAR3TICL240ICL_LITTYPE
DESCRLitigation Description ICL_LITDESCRCHAR60TEXT60
STARTDATELitigation Start Date ICL_LITSTARTDATEDATS8DATS
ENDDATELitigation End Date ICL_LITENDDATEDATS8DATS
LITISSUELitigation Issue ICL_LITISSUECHAR4TICL241ICL_LITISSUE
CURRENCYCurrency in Litigation ICL_LITCURRENCYCUKY5Assigned to domainWAERS
ESTIMAMOUNTEstimated Litigation Amount ICL_ESTIMAMOUNTCURR15(2) ICL_LITAMOUNT
LITAMOUNTActual Litigation Amount ICL_LITAMOUNTCURR15(2) ICL_LITAMOUNT
COUNSELBUDGETDefense Counsel Case Budget ICL_COUNSELBUDGETCURR15(2) ICL_LITAMOUNT
DISCLOSUREDATEDisclosure Date ICL_DISCLOSUREDATEDATS8DATS
SOLPERIODDATEStatute of Limitations Period ICL_SOLPERIODDATEDATS8DATS
LIABILITYLiability ICL_LIABILITYCHAR2TICL242ICL_LIABILITY
SETTLEMENTLitigation Settlement ICL_LITSETTLEMENTCHAR3TICL243ICL_LITSETTLEMENT
SETTLEDLitigation Settled ICL_LITSETTLEDCHAR3TICL244ICL_LITSETTLED
CANCELLEDStatus 'Cancelled' ICL_LIT_CANCELLEDCHAR1XFELD
FINISHEDStatus 'Closed' ICL_LIT_FINISHEDCHAR1XFELD
REOPENEDStatus 'Reopened' ICL_LIT_REOPENEDCHAR1XFELD

Key field Non-key field



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

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

SELECT SINGLE *
FROM ICLLITHEADER
INTO CORRESPONDING FIELDS OF WA_ICLLITHEADER
WHERE...

How to access SAP table ICLLITHEADER

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

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