SAP ICOMPLETION Completion data Table data and field list

ICOMPLETION 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 "Completion data" 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_ICOMPLETION TYPE ICOMPLETION.

The ICOMPLETION table consists of various fields, each holding specific information or linking keys about Completion data data available in SAP. These include MANUM (Sequential Task Number), OBJNR (Object Number for Status Management), NOTIF_OBJNR (Object Number for Status Management), DOCNUM (IDoc number)... 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. .

ICOMPLETION structure Technical Details:

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


SAP ICOMPLETION 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 ICOMPLETION 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
QMNUMNotification No QMNUMCHAR12Assigned to domainALPHAQMNUMIQM
MANUMSequential Task Number MANUMNUMC4NUM4IMA
OBJNRObject Number for Status Management QMOBJNRCHAR22Assigned to domainJ_OBJNR
NOTIF_OBJNRObject Number for Status Management QMOBJNRCHAR22Assigned to domainJ_OBJNR
DOCNUMIDoc number EDI_DOCNUMNUMC16EDI_DOCNUMDCN
COMPDATEDate on Which the Task Was Completed QMSMERLDATDATS8DATUM
COMPTIMETime at Which Task Was Completed QMSMERLTIMTIMS6UZEIT
COMPBYPerson Who Completed the Task QMSMERLNAMCHAR12USNAM
COMPTEXTCompletion text ICOMPLETION_TEXTCHAR72CHAR72
KZMLAPrimary language indicator for text segment KZMLACHAR1CHAR1
INDTXObject Long Text Available INDLTXCHAR1CHAR1
PSTERPlanned Start Date PSTERDATS8DATUM
PETERPlanned finish date PETERDATS8DATUM
PETURPlanned Finish Time for Task PETURTIMS6UZEIT

Key field Non-key field



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

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

How to access SAP table ICOMPLETION

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

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