ANLP SAP (Asset Periodic Values) Table details

Dictionary Type: Table
Description: Asset Periodic Values




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




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

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

The ANLP table consists of various fields, each holding specific information or linking keys about Asset Periodic Values data available in SAP. These include BUKRS (Company Code), GJAHR (Fiscal Year), PERAF (Depreciation calculation period), AFBNR (Sequence number of depreciation posting run in the period).. 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 ANLP 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
MANDTClient MANDTCLNT3Assigned to domainMANDT
BUKRSCompany Code BUKRSCHAR4T001BUKRSBUKC_T001
GJAHRFiscal Year GJAHRNUMC4GJAHRGJAHRGJR
PERAFDepreciation calculation period PERAFNUMC3PERAF
AFBNRSequence number of depreciation posting run in the period AFBNRNUMC2NUM2
ANLN1Main Asset Number ANLN1CHAR12ANLHALPHAANLN1AN1
ANLN2Asset Subnumber ANLN2CHAR4ANLAALPHAANLN2AN2
AFABERDepreciation area real or derived AFABERNUMC2T093AFABE
ZUJHRAsset acquisition year (currently not used) DZUJHRNUMC4GJAHRGJAHR
ZUCODSub-classification of asset acquisitions(currently not used) DZUCODNUMC4AZCOD
AUFWPPlanned revaluation on replacement value AUFWPCURR13(2) ANLKWERT
AUFWBRevaluation posted on replacement value AUFWBCURR13(2) ANLKWERT
AUFWZRevaluation on replacement value to be posted AUFWZCURR13(2) ANLKWERT
NAFAPPlanned ordinary depreciation for the year NAFAPCURR13(2) ANLKWERT
NAFAGOrdinary depreciation posted in the current year NAFAGCURR13(2) ANLKWERT
NAFAZOrdinary depreciation to be posted NAFAZCURR13(2) ANLKWERT
SAFAPPlanned special depreciation for the year SAFAPCURR13(2) ANLKWERT
SAFAGSpecial depreciation posted in the current fiscal year SAFAGCURR13(2) ANLKWERT
SAFAZSpecial depreciation to be posted SAFAZCURR13(2) ANLKWERT
AAFAPScheduled unplanned depreciation for the year AAFAPCURR13(2) ANLKWERT
AAFAGUnplanned depreciation posted for the year AAFAGCURR13(2) ANLKWERT
AAFAZUnplanned depreciation to be posted AAFAZCURR13(2) ANLKWERT
MAFAPPlanned transfer of reserves for the year MAFAPCURR13(2) ANLKWERT
MAFAGAcquisition value reducing depreciation posted for the year MAFAGCURR13(2) ANLKWERT
MAFAZTransferred reserves to be posted for the year MAFAZCURR13(2) ANLKWERT
ZINSPInterest planned for the year DZINSPCURR13(2) ANLKWERT
ZINSGInterest posted for the year DZINSGCURR13(2) ANLKWERT
ZINSZInterest for the year to be posted DZINZBCURR13(2) ANLKWERT
AUFNPPlanned revaluation of accumulated ordinary depreciation AUFNPCURR13(2) ANLKWERT
AUFNGPosted revaluation of accumulated ordinary depreciation AUFNGCURR13(2) ANLKWERT
AUFNZRevaluation to be posted on cum. ordinary depreciation AUFNZCURR13(2) ANLKWERT
ANSWLTransactions for the year affecting asset values ANSWLCURR13(2) ANLKWERT
INVZMInvestment grant for the year INVZMCURR13(2) ANLKWERT
KTOGRAccount determination KTOGRCHAR8T095AALPHAKTOGR
AFASLDepreciation key AFASLCHAR4T090NAAFASLSH_AFASL
KOSTLCost Center KOSTLCHAR10Assigned to domainALPHAKOSTLKOS
GSBERBusiness Area GSBERCHAR4TGSBGSBERGSB
CAUFNInternal order CAUFNCHAR12AUFKALPHAAUFNR
XUNULIndicator: Post to below-zero account XUNULLCHAR1XFELD
ANUPDIndicator: Type of change to table ANUPDCHAR1ANUPD
FKBERFunctional Area FKBERCHAR16Assigned to domainFKBERFBE
BELNRDocument number of a depreciation posting document AFA_BLNRCHAR10ALPHABELNR
LSTARActivity Type LSTARCHAR6Assigned to domainLSTARLARLART_EMPTY
GEBERFund BP_GEBERCHAR10Assigned to domainBP_GEBERFIC
GRANT_NBRGrant GM_GRANT_NBRCHAR20ALPHAGM_GRANT_NBRGM_GRANT_NBRGRANTS_GENERIC
GEBER2Fund for APC Account Assignments BP_GEBER2CHAR10Assigned to domainBP_GEBERFIC
FKBER2Functional Area for APC Account Assignments FKBER2CHAR16Assigned to domainFKBERFBE
GRANT_NBR2Grant for APC Account Assignments GM_GRANT_NBR2CHAR20ALPHAGM_GRANT_NBR
FISTL2Funds Center for APC Account Assignments FISTL2CHAR16Assigned to domainFISTLFIS
IMKEYInternal Key for Real Estate Object IMKEYCHAR8IMKEY
PS_PSP_PNR2WBS Element (Costs) PS_PSP_PNR2NUMC8Assigned to domainABPSPPS_POSNR
BUDGET_PDFM: Budget Period FM_BUDGET_PERIODCHAR10Assigned to domainFM_BUDGET_PERIODBUDPER
BUDGET_PD2Budget Period for APC Account Assignments FM_BUDGET_PERIOD2CHAR10Assigned to domainFM_BUDGET_PERIODBUDPER
SEGMENTSegment for Segmental Reporting FB_SEGMENTCHAR10FAGL_SEGMALPHAFB_SEGMENT
PRCTRProfit Center PRCTRCHAR10Assigned to domainALPHAPRCTRPRCPRCTR_EMPTY
FISTLFunds Center FISTLCHAR16Assigned to domainFISTLFIS

Key field Non-key field



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

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

SELECT SINGLE *
FROM ANLP
INTO CORRESPONDING FIELDS OF WA_ANLP
WHERE...

How to access SAP table ANLP

Within an ECC or HANA version of SAP you can also view further information about ANLP 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!