SAP ICL_RESDATA_ERROR Input for Calculating Suppl. Reserves Table data and field list

ICL_RESDATA_ERROR 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 "Input for Calculating Suppl. Reserves" 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_ICL_RESDATA_ERROR TYPE ICL_RESDATA_ERROR.

The ICL_RESDATA_ERROR table consists of various fields, each holding specific information or linking keys about Input for Calculating Suppl. Reserves data available in SAP. These include REPYEAR (Report Year), REPMONTH (Report Month), NOTICECT_CLMNT (Number of Current Claimants), NOTICECT_COV (Number of Open Claim Coverages)... 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. .

ICL_RESDATA_ERROR structure Technical Details:

Delivery Class:
Display/Maintenance via tcode SM30: Display/Maintenance Allowed but with Restrictions
SAP enhancement categories: Can be enhanced (character-type or numeric)


SAP ICL_RESDATA_ERROR structure 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 ICL_RESDATA_ERROR 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
RESGROUPReserve Group ICL_RESGROUPCHAR25ICL_RESGROUP
REPYEARReport Year ICL_REPYEARNUMC4ICL_YEAR
REPMONTHReport Month ICL_REPMONTHNUMC2ICL_MONTH
NOTICECT_CLMNTNumber of Current Claimants ICL_NOTICECT_CLMNTNUMC10ICL_PENDCT
NOTICECT_COVNumber of Open Claim Coverages ICL_NOTICECT_COVNUMC10ICL_PENDCT
SELCOSTSelected Cost ICL_SELCOSTCURR15(2) ICL_AMOUNT
ULTLOSSUltimate Loss ICL_ULTLOSSCURR15(2) ICL_AMOUNT
PAIDLOSSSuppl. Reserve: Paid Benefit ICL_PAIDLOSSRESCURR15(2) ICL_AMOUNT
PAIDEXPENSEPaid Claim Processing Expenses ICL_PAIDEXPENSECURR15(2) ICL_AMOUNT
FIELDRESField Reserve ICL_FIELDRESCURR15(2) ICL_AMOUNT
FIELDINCClaim Amount from Claim Handler's Viewpoint ICL_FIELDINCCURR15(2) ICL_AMOUNT
RESERVECT_CLMNTPending Count Claimant ICL_RESERVECT_CLMNTNUMC10ICL_PENDCT
RESERVECT_COVPending Reserve Count (Coverages) ICL_RESERVECT_COVNUMC10ICL_PENDCT
SUPRESAMOUNTSupplemental Claim Loss Reserve ICL_RESAMOUNTCURR15(2) ICL_RESAMOUNT
EXPRESERVEIBNR Expense Reserve ICL_EXPRESERVECURR17(2) ICL_EXPRESERVE
FACTORNumerical Parameter Value for Reserve Calculation Method ICL_PARAMNUMDEC10(5) ICL_PARADECF
RCError code ICL_RCINT4INT410ICL_INT4
RCTEXTText with Length 30 ICL_TEXT30CHAR30ICL_TEXT30

Key field Non-key field



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

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

How to access SAP table ICL_RESDATA_ERROR

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

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