SAP ANKP Asset classes: Fld Cont Dpndnt on Chart of Depreciation Table data and field list

ANKP is a standard SAP Table which is used to store Asset classes: Fld Cont Dpndnt on Chart of Depreciation data in SAP systems, such as SAP R/3, S/4HANA, depending on the version and release level.

The ANKP table consists of various fields, each holding specific information or linking keys about Asset classes: Fld Cont Dpndnt on Chart of Depreciation data available in SAP. These include ANLKL (Asset Class), AFAPL (Chart of depreciaton for asset valuation), FELEI (Screen layout for Asset Accounting), KTOGR (Account determination)... 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. .

ANKP table Technical Details:

Delivery Class: C - Customising table, maintenance only by cust
Display/Maintenance via tcode SM30: Display/Maintenance Allowed but with Restrictions
SAP enhancement categories: Not classified


SAP ANKP 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 ANKP 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
ANLKLAsset Class ANLKLCHAR8ANKAALPHAANLKLANKSH_ANLKA
AFAPLChart of depreciaton for asset valuation AFAPLCHAR4T096AFAPLAFPH_AFAPL
FELEIScreen layout for Asset Accounting FELEICHAR4T082AFELEI
KTOGRAccount determination KTOGRCHAR8T095AALPHAKTOGR
ORD41Evaluation group 1 ORD41CHAR4T087ORD4X
ORD42Evaluation group 2 ORD42CHAR4T087ORD4X
ORD43Evaluation group 3 ORD43CHAR4T087ORD4X
ORD44Evaluation group 4 ORD44CHAR4T087ORD4X
GDLGRPEvaluation group 5 GDLGRPCHAR8T087GGDLGRP
VMGLIProperty classification key VMGLICHAR4T092ALPHAVMGLI
VSARTAsset insurance type VSART_ANLACHAR2T099AVART
VSINDInsurance index series VSINDCHAR5T094AWBIND
ERNAMName of Person who Created the Object ERNAMCHAR12USNAM
ERDATDate on Which Record Was Created ERDATDATS8DATUM
AENAMName of Person Who Changed Object AENAMCHAR12USNAM
AEDATChanged on AEDAT_ANLADATS8DATUM
XLOEVInd.: Asseet class marked for deletion XLOEV_ANKACHAR1XFELD
XSPERIndicator: Asset class is blocked XSPEA_ANKACHAR1XFELD

Key field Non-key field



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

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

SELECT SINGLE *
FROM ANKP
INTO CORRESPONDING FIELDS OF WA_ANKP
WHERE...

How to access SAP table ANKP

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

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