ICLSUBCL SAP (Subclaim) Table details

Dictionary Type: Table
Description: Subclaim




ABAP Code to SELECT data from ICLSUBCL
Related tables to ICLSUBCL
Access table ICLSUBCL




Table field list including key, data, relationships and ABAP select examples

ICLSUBCL is a standard SAP Table which is used to store Subclaim data and is available within R/3 SAP systems depending on the version and release level.

The ICLSUBCL table consists of various fields, each holding specific information or linking keys about Subclaim data available in SAP. These include ACTIVE (Table entry is active (A) or in suspense (S)), CLAIM (Number of Claim), SUBCLAIM (Subclaim), 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. .

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 ICLSUBCL table fields - Full list of fields found in SAP data dictionary

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
SUBCLAIMSubclaim ICL_SUBCLCHAR3ICL_SUBCLICL_SUBCLAIM
CHANGETIMEChanged: Date + Time ICL_CHANGEUTC1DEC15TSTAMICL_TIMESTAMP
CHANGEDBYChanged By ICL_CHANGEDBYCHAR12USR02XUBNAME
DELETEDDatabase Line Status (Original, Changed, Deleted) ICL_RECSTATUSCHAR1ICL_RECSTATUS
CREATEDBYCreated By ICL_CREATEDBYCHAR12USR02XUBNAME
CREATETIMECreated: Date + Time ICL_CREATEUTCDEC15TSTAMICL_TIMESTAMP
STATUSStatus of Subclaim ICL_SUBCL10CHAR2TICL140ICL_STATUS
STATUSCHGTime of Last Status Change ICL_STATUSCHGDEC15TSTAMICL_TIMESTAMP
STHANDLER'Claim Handling' Process Active ICL_STHANDLERCHAR1XFELD
STNOCLAIMNo Claim Made ICL_STNOCLAIMCHAR1XFELD
STCLOSED'Close (Sub)Claim' Process Executed ICL_STCLOSEDCHAR1XFELD
STINVALIDSubclaim Invalid ICL_STINVALIDCHAR1XFELD
STREJECTClaim/Subclaim Rejected ICL_STREJECTCHAR1XFELD
STATREASONReason for Changing the Status ICL_FORMSETCHAR2TICL047ICL_FORMSET
XCOMPLETEFlag: Claim Item List (Presumably) Complete ICL_SUBCL08CHAR1XFELD
SUBCLTYPESubclaim Type ICL_SUBCLTYPECHAR4TICL004ICL_SUBCLTYPE
XSALVAGEFlag: Salvage? ICL_SUBCL01CHAR1ICL_SUBCL01
XOTHERINSUREFlag: Other Insurance? ICL_SUBCL02CHAR1XFELD
XSUBROSubrogation/Recovery Status ICL_SUBCL03CHAR1ICL_SUBCL03
SUBRO_POTENTIALSubrogation/Recovery Potential of a Subclaim (Check Status) ICL_SUBRO_POTENTIAL_DCHAR1ICL_SUBRO_POTENTIAL
XLITIGATIONFlag: Litigation? ICL_SUBCL04CHAR1XFELD
XNEGOTIATIONFlag: Negotiation? ICL_SUBCL05CHAR1XFELD
XFRAUDFlag: Potential Fraud? ICL_SUBCL06CHAR1XFELD
COVERAGECoverage ICL_POLMCHAR4ICLPOLMICL_POLM
COVPOLVNRVersion Number of Coverage Contract ICL_POLMVNRNUMC2ICLPOLMICL_POLVCNTR
XCOVCONFIRMEDIndication of Compensability ICL_COVEREDCHAR1ICL_COVERED
ASSIGN_STATEAssignment Status of a Claim Subobject ICL_ASSIGN_STATECHAR2ICL_ASSIGN_STATE
HANDLERTYPEObject Category of Subclaim Handler ICL_HANDLERTYPECHAR2T778OOTYPE
CLAIMHANDLERClaim Handler for Subclaim ICL_SUBCLCHCHAR12USR02XUBNAME
HANDLERTYPE_GRPObject Category of Subclaim Handler Group ICL_HANDLERTYPE2CHAR2Assigned to domainOTYPE
CLAIMHANDLER_GRPClaim Handler Group for Subclaims ICL_SUBCLCH2CHAR12Assigned to domainXUBNAME
COMPLEXComplexity of Claim/Subclaim ICL_COMPLEXCHAR1TICL027ICL_COMPLEX
SUBCLAIMDESCName of Claim/Subclaim ICL_SUBCLDESCRIPCHAR20TEXT20
BENTREEBenefit Type Tree ICL_BENTREECHAR8Assigned to domainICL_BENTREE
BENTREEGGeneration of Benefit Type Tree ICL_BENTREEGNUMC5Assigned to domainICL_BENTREEG
BENTREEVVersion of Benefit Type Tree ICL_BENTREEVNUMC5Assigned to domainICL_BENTREEV
WF_EXEC_TIMEExecution Time Workflow ICL_WF_EXECUTION_TIMEDEC15TSTAMICL_TIMESTAMP
WF_STATUSWorkflow Status ICL_WF_STATUSNUMC1ICL_WF_STATUS
ASSIGN_GUIDUUID of Entry to be Linked ICL_ASSIGN_GUIDCHAR32SYSUUID_C
MAX_ITEMNRCurrent Highest Claim Item Number ICL_SCLITEM_NR_MAXCHAR4Assigned to domainICL_SCLITEM
OVERRULEREASONOverruling Reason ICL_OVERRULEREASON_DCHAR3ICL_OVERRULEREASON
BENSTART_DTStart of Benefit ICL_BENSTART_DT_DDATS8DATS
BENEND_DTEnd of Benefit ICL_BENEND_DT_DDATS8DATS
COMPENSABILITYCompensability ICL_COMPENSABILITY_DCHAR1ICL_COMPENSABILITY
BENCALC_NUMSequence Number of Benefit Calculation ICL_BENCALC_NUM_DCHAR20ICL_BENCALC_NUM
INSUREDOBJInsured Object Number ICL_INSOBJNUMC4Assigned to domainICL_INSOBJ

Key field Non-key field



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

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

SELECT SINGLE *
FROM ICLSUBCL
INTO CORRESPONDING FIELDS OF WA_ICLSUBCL
WHERE...

How to access SAP table ICLSUBCL

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

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


Search for further information about these or an SAP related objects



Comments on this SAP object

What made you want to lookup this SAP object? Please tell us what you were looking for and anything you would like to be included on this page!