SAP ICS_SUBROG Subrogation/Recovery (Header): Shadow Table Table data and field list

ICS_SUBROG is a standard SAP Table which is used to store Subrogation/Recovery (Header): Shadow Table data in SAP systems, such as SAP R/3, S/4HANA, depending on the version and release level.

The ICS_SUBROG table consists of various fields, each holding specific information or linking keys about Subrogation/Recovery (Header): Shadow Table data available in SAP. These include ACTIVE (Table entry is active (A) or in suspense (S)), CLAIM (Number of Claim), SUBROG_GUID (Universal Unique Identifier of Subrogation/Recovery), 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. .

ICS_SUBROG 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 ICS_SUBROG 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 ICS_SUBROG 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
SUBROG_GUIDUniversal Unique Identifier of Subrogation/Recovery ICL_SUBROG_GUID_D_PECHAR32SYSUUID_C
CHANGETIMEChanged: Date + Time ICL_CHANGEUTC1DEC15TSTAMICL_TIMESTAMP
CHANGEDBYChanged By ICL_CHANGEDBYCHAR12USR02XUBNAME
DELETEDDatabase Line Status (Original, Changed, Deleted) ICL_RECSTATUSCHAR1ICL_RECSTATUS
TYPEType of Subrogation/Recovery ICL_SUBROG_TYPE_D_PECHAR10ICL_CSUBROGTYPEICL_SUBROG_TYPE
REASONSubrogation/Recovery Reason ICL_SUBROG_REASON_D_PECHAR10ICL_CSUBROGREASICL_SUBROG_REASON
ESTIMAMOUNTEstimated Subrogation/Recovery Amount ICL_SUBROG_ESTIMAMOUNT_D_PECURR15(2) ICL_SUBROG_AMOUNT
CURRENCYSubrogation/Recovery Currency ICL_SUBROG_CURRENCY_D_PECUKY5TCURCWAERS
LIABRATELiability Rate for Subrogation/Recovery ICL_SUBROG_LIABRATE_D_PEDEC5(2)
PROBABILITYSubrogation/Recovery Probability ICL_SUBROG_PROBABILITY_D_PEDEC5(2)
BP_SBRG_MAINParty Liable ICL_SUBROG_BP_SBRG_D_PECHAR10Assigned to domainALPHABU_PARTNER
LITHGUIDUniversal Unique Identifier of Litigation ICL_LITHGUIDCHAR32SYSUUID_C
SR_STATUSSubrogation/Recovery Status ICL_SUBROG_STATUS_D_PECHAR1ICL_SUBROG_STATUS
SENTDATEDate Sent (Notification of Subrogation/Recovery Activation) ICL_SUBROG_SENTDATE_D_PEDATS8DATS
FINISHEDSubrogation/Recovery Status 'Completed' ICL_SUBROG_FINISHED_D_PECHAR1BOOLE
CLOSEREASONClosure Reason for Subrogation/Recovery ICL_SR_CLOSE_REASON_D_PECHAR80TEXT80
SUBROG_IDNumber of Subrogation/Recovery ICL_SUBROG_ID_D_PENUMC5
SUBROG_CGUIDSubrogation/Recovery: Compressed GUID (Univ.Unique Identif.) ICL_SUBROG_CGUID_D_PECHAR16

Key field Non-key field



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

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

SELECT SINGLE *
FROM ICS_SUBROG
INTO CORRESPONDING FIELDS OF WA_ICS_SUBROG
WHERE...

How to access SAP table ICS_SUBROG

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

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