P01EL_DBEN SAP (Data Modules ELENA Basic Data for Employer and Employee) Table details

Dictionary Type: Table
Description: Data Modules ELENA Basic Data for Employer and Employee




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




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

P01EL_DBEN is a standard SAP Table which is used to store Data Modules ELENA Basic Data for Employer and Employee data and is available within R/3 SAP systems depending on the version and release level.

The P01EL_DBEN table consists of various fields, each holding specific information or linking keys about Data Modules ELENA Basic Data for Employer and Employee data available in SAP. These include GUID (Unique Key for Identification of Notification), AVBEG (Start of the Work/Employment Relationship), STKL (Tax class), FKT (Factor for Tax Calculation).. 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: Cannot Be Enhanced


SAP P01EL_DBEN 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
GUIDUnique Key for Identification of Notification P01_SVGUIDCHAR32SYSUUID_C
AVBEGStart of the Work/Employment Relationship P01_SV_EL_AVBEGDATS8DATS
STKLTax class P01_SV_EL_STKLCHAR1STRKL
FKTFactor for Tax Calculation P01_SV_EL_FKTNUMC4NUMC4
KINDFRBTax Exemption for Children P01_SV_EL_KINDFRBNUMC3P01_SV_EL_KINDFRB
TTSCOccupational Code P01_SV_EL_TTSCCHAR9D3TTSC
KENNZRKPlace of Work (Legal Area) Indicator P01_SV_EL_KENNZRKCHAR1D3KENNZRK
BYGRContribution Group P01_SV_EL_BYGRNUMC4D3BYGR
AZWOECHWeekly Working Time P01_SV_EL_AZWOECHNUMC4P01_SV_EL_AZWOECH
VSTBREGLF+/- for Regular Gross Remuneration Subject to Tax P01_SV_EL_VZSTBREGLFCHAR1P01_SV_VZ
STBREGLFCurrent Gross Remuneration Subject to Tax P01_SV_EL_STBREGLFNUMC10P01_SV_EL_BETRAG
VSTBREGSO+/- Sign for Other Gross Remuneration Subject to Tax P01_SV_EL_STBREGSOCHAR1P01_SV_VZ
STBREGSOOther Gross Remuneration Subject to Tax P01_SV_EL_STRBEGSONUMC10P01_SV_EL_BETRAG
SVBREGLFCurrent Gross Remuneration Subject to SI Contributions P01_SV_EL_SVBREGLFNUMC10P01_SV_EL_BETRAG
SVBREGEOne-Time SI Gross Payment P01_SV_EL_SVBREGENUMC10P01_SV_EL_BETRAG
VGSBREG+/- for Total Gross Remuneration P01_SV_EL_VZGSBREGCHAR1P01_SV_VZ
GSBREGTotal Gross Remuneration P01_SV_EL_GSBREGNUMC10P01_SV_EL_BETRAG
KVLFHI Payments on Regular Remunerations P01_SV_EL_KVLFNUMC10P01_SV_EL_BETRAG
KVEHI Payments on Non-Recurring Remunerations P01_SV_EL_KVENUMC10P01_SV_EL_BETRAG
RVLFPI Contributions on Current Remuneration P01_SV_EL_RVLFNUMC10P01_SV_EL_BETRAG
RVEPI Contributions on Once-Only Payments P01_SV_EL_RVENUMC10P01_SV_EL_BETRAG
AVLFUI Contributions on Current Remuneration P01_SV_EL_AVLFNUMC10P01_SV_EL_BETRAG
AVEUI Contributions on One-Time Payments P01_SV_EL_AVENUMC10P01_SV_EL_BETRAG
PVLFCI Contribution for Current Remuneration P01_SV_EL_PVLFNUMC10P01_SV_EL_BETRAG
PVECare Insurance Contribution for Once-Only Payments P01_SV_EL_PVENUMC10P01_SV_EL_BETRAG
VLSTLF+/- for Employment Tax Regular P01_SV_EL_VZLSTLFCHAR1P01_SV_VZ
LSTLFEmployment Tax on Regular Payments P01_SV_EL_LSTLFNUMC10P01_SV_EL_BETRAG
VLSTSOB+/- for Employment Tax on Other Payments P01_SV_EL_VZLSTSOBCHAR1P01_SV_VZ
LSTSOBEmployment Tax Other Payment P01_SV_EL_LSTSOBNUMC10P01_SV_EL_BETRAG
VSOLILF+/- for Reunification Tax Regular P01_SV_EL_VZSOLILFCHAR1P01_SV_VZ
SOLILFReunification Tax Current P01_SV_EL_SOLILFNUMC10P01_SV_EL_BETRAG
VSOLISOB+/- for Reunification Tax on Other Payments P01_SV_EL_VZSOLISOBCHAR1P01_SV_VZ
SOLISOBReunification Tax on Other Payments P01_SV_EL_SOLISOBNUMC10P01_SV_EL_BETRAG
VKISTLF+/- for Church Tax on Regular Payments P01_SV_EL_VZKISTLFCHAR1P01_SV_VZ
KISTLFChurch Tax on Regular Payments P01_SV_EL_KISTLFNUMC10P01_SV_EL_BETRAG
VKISTSOB+/- for Church Tax on Other Payments P01_SV_EL_VZKISTSOBCHAR1P01_SV_VZ
KISTSOBChurch Tax on Other Payments P01_SV_EL_KISTSOBNUMC10P01_SV_EL_BETRAG
STAPAGEmployer's Tax Deduction Obligation P01_SV_EL_STAPAGCHAR1P01_SV_EL_STAPAG

Key field Non-key field



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

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

SELECT SINGLE *
FROM P01EL_DBEN
INTO CORRESPONDING FIELDS OF WA_P01EL_DBEN
WHERE...

How to access SAP table P01EL_DBEN

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