SAP ANKAZ Asset class: extension for technical fields Table data and field list

ANKAZ is a standard SAP Table which is used to store Asset class: extension for technical fields data in SAP systems, such as SAP R/3, S/4HANA, depending on the version and release level.

The ANKAZ table consists of various fields, each holding specific information or linking keys about Asset class: extension for technical fields data available in SAP. These include ANLKL (Asset Class), AM_TDNAM01 (Asset Accounting: Template for gen. long text), AM_TDNAM02 (Asset Accounting: Long text template net worth valuation), AM_TDNAM03 (Asset Accounting: Long text template technical view)... 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. .

ANKAZ 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: Can be enhanced (character-type)


SAP ANKAZ 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 ANKAZ 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
AM_TDNAM01Asset Accounting: Template for gen. long text AM_TDNAM01CHAR32CHAR32
AM_TDNAM02Asset Accounting: Long text template net worth valuation AM_TDNAM02CHAR32CHAR32
AM_TDNAM03Asset Accounting: Long text template technical view AM_TDNAM03CHAR32CHAR32
AM_TDNAM04Asset Accounting: Long text template cost-acc. view AM_TDNAM04CHAR32CHAR32
AM_TDNAM05Asset Accounting: Long text template for supplier data AM_TDNAM05CHAR32CHAR32
AM_TDNAM06Asset Accounting: Long text template for insurance AM_TDNAM06CHAR32CHAR32
AM_TDNAM07Asset Accounting: Long text template for leasing AM_TDNAM07CHAR32CHAR32
ANLN1_ABGAsset number for gain/loss account assgmt. for retirement ANLN1_ABGCHAR12Assigned to domainALPHAANLN1
ANLN2_ABGAsset subnumber for gain/loss account assignment retirement ANLN2_ABGCHAR4Assigned to domainALPHAANLN2
EQTYPEquipment category EQTYPCHAR1T370TEQTYPEQT
EQARTType of Technical Object EQARTCHAR10T370KEQART
ACT_CREATE_AACreate Equipment Record when Creating Asset AAPM_ACT_CREATE_AACHAR1AAPM_ACT
ACT_CHANGE_AAChange Equipment Master when Changing Asset AAPM_ACT_CHANGE_AACHAR1AAPM_ACT
ACT_CREATE_PMCreate Asset when Creating Equipment AAPM_ACT_CREATE_PMCHAR1AAPM_ACT
ACT_CHANGE_PMChange Asset Master Record from Equipment Master AAPM_ACT_CHANGE_PMCHAR1AAPM_ACT

Key field Non-key field



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

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

SELECT SINGLE *
FROM ANKAZ
INTO CORRESPONDING FIELDS OF WA_ANKAZ
WHERE...

How to access SAP table ANKAZ

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

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