SAP TKALV Control Parameter for Line Item Report with AAA Table data and field list

TKALV is a standard SAP Table which is used to store Control Parameter for Line Item Report with AAA data in SAP systems, such as SAP R/3, S/4HANA, depending on the version and release level.

The TKALV table consists of various fields, each holding specific information or linking keys about Control Parameter for Line Item Report with AAA data available in SAP. These include ITEM_GROUP (Line Item Type), REP_OBJECT (Line Item Report Object), CUSTOMER (Customer Entry), FIELDSTRUC (Field Structure Name)... 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. .

TKALV table Technical Details:

Delivery Class: E - Control table, SAP and customer have separate key areas
Display/Maintenance via tcode SM30: Display/Maintenance Allowed but with Restrictions
SAP enhancement categories: Can be enhanced (character-type)


SAP TKALV 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 TKALV 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
MANDTClient MANDTCLNT3T000MANDT
ITEM_GROUPLine Item Type KAEP_ITEMCHAR4KAEP_ITEM
REP_OBJECTLine Item Report Object KAEP_OBJCHAR4KAEP_OBJ
CUSTOMERCustomer Entry C_FLAGCHAR1FLAG
FIELDSTRUCField Structure Name KAEP_DDTABCHAR30TABNAME
PRIM_DBTABPrimary Table Name KAEP_PRTABCHAR30TABNAME
SEK_DBTABSecondary Table Name KAEP_SKTABCHAR30TABNAME
ORIGINOrigin of selection view RSLDB_ORIGCHAR3RSLDB_ORIG
SELVIEWName of selection view RSLDB_NAMECHAR20SYCHAR20
TXT_CMNTABName of Table With General Text Fields KAEP_TCTABCHAR30TABNAME
TXT_FLDTABName of Table With Special Text Fields KAEP_TFTABCHAR30TABNAME

Key field Non-key field



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

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

SELECT SINGLE *
FROM TKALV
INTO CORRESPONDING FIELDS OF WA_TKALV
WHERE...

How to access SAP table TKALV

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

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