SAP ICLIBNRQUART IBNR: Reserves Table Table data and field list

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

The ICLIBNRQUART table consists of various fields, each holding specific information or linking keys about IBNR: Reserves Table data available in SAP. These include ACCYEAR (Incident Year), CLASSCODE (Class Code), IBNRQUART (Key for IBNR Reserves Table ICLIBNRQUART), QUARTSTATUS (IBNR Reserve Status)... 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. .

ICLIBNRQUART 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 ICLIBNRQUART 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 ICLIBNRQUART 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 MANDTCLNT3Assigned to domainMANDT
ACCYEARIncident Year ICL_ACCYEARNUMC4ICL_YEAR
CLASSCODEClass Code ICL_CLASSCODECHAR10Assigned to domainICL_CLASSCODEICL_CLASSCODE
IBNRQUARTKey for IBNR Reserves Table ICLIBNRQUART ICL_IBNRQUARTNUMC10NUMC10
QUARTSTATUSIBNR Reserve Status ICL_QUARTSTATUSCHAR1ICL_QUARTSTATUS
COMPCODECompany Code for Reserves ICL_COMPCODECHAR4Assigned to domainICL_COMPCODEICL_COMPCODE
LINEOFINSLine of Insurance ICL_LINEOFINSCHAR10Assigned to domainICL_LINEOFINSICL_LINEOFINS
COVERAGECoverage (Indicative for Background Reserve) ICL_COVERAGECHAR4Assigned to domainICL_COVERAGEICL_COVERAGE
BUSUNITBusiness Unit ICL_BUSUNITCHAR10Assigned to domainICL_BUSUNITICL_BUSUNIT
IBNRAMOUNTIBNR Reserve Amount ICL_IBNRAMOUNTCURR15(2) ICL_AMOUNT
EXPAMNT1IBNR: Expense Amount 1 ICL_EXPAMNT1CURR15(2) ICL_AMOUNT
EXPAMNT2IBNR: Expense Amount 2 ICL_EXPAMNT2CURR15(2) ICL_AMOUNT
CURRENCYCurrency for Reserves ICL_SUPRESCURCUKY5Assigned to domainWAERS

Key field Non-key field



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

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

SELECT SINGLE *
FROM ICLIBNRQUART
INTO CORRESPONDING FIELDS OF WA_ICLIBNRQUART
WHERE...

How to access SAP table ICLIBNRQUART

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

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