SAP BDLFUVERS Definition of all Versions for one Logical Function Table data and field list

BDLFUVERS is a standard SAP Table which is used to store Definition of all Versions for one Logical Function data in SAP systems, such as SAP R/3, S/4HANA, depending on the version and release level.

The BDLFUVERS table consists of various fields, each holding specific information or linking keys about Definition of all Versions for one Logical Function data available in SAP. These include CLUST_ID (RFC Download: Function module), SAPRL_FROM (SYSTEM: SAP-Release), SAPRL_TO (SYSTEM: SAP-Release), FUNCNAME (Function 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. .

BDLFUVERS 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: Not classified


SAP BDLFUVERS 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 BDLFUVERS 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
LOGFUNCLogical name BDL_LOGFUNCHAR30BDLFUNCCHAR30LIB
CLUST_IDRFC Download: Function module BDL_CLUSTCHAR6CHAR6
SAPRL_FROMSYSTEM: SAP-Release BDL_SAPRLCHAR4BDLCHAR4
SAPRL_TOSYSTEM: SAP-Release BDL_SAPRLCHAR4BDLCHAR4
FUNCNAMEFunction name BDL_FUNCCHAR30CHAR30LIB
DEVSYSTEMLogical Destination (Specified in Function Call) RFCDESTCHAR32Assigned to domainRFCDESTRFCF4_RFCDESTYPEALL
DEVRELEASERelease of Development of last data call BDL_DEVRELCHAR4SYCHAR04
OPSYSSYSTEM: Operation system BDL_OPSYSCHAR10BDL_OP_10
OPSYS_FROMOperation system release BDL_OPRELCHAR10TEXT10
OPSYS_TOOperation system release BDL_OPRELCHAR10TEXT10
DBSYSSYSTEM: Datenbanksystem BDL_DBSYSCHAR10BDL_C10
DBREL_FROMDatabase release BDL_DBRELCHAR20CHAR20
DBREL_TODatabase release BDL_DBRELCHAR20CHAR20
HOT_FROMHotpackage numbers BDL_HOTCHAR4CHAR4
HOT_TOHotpackage numbers BDL_HOTCHAR4CHAR4
LEG_FROMLegal change numbers BDL_LEGCHAR4CHAR4
LEG_TOLegal change numbers BDL_LEGCHAR4CHAR4
KRN_FROMR/3 kernel release BDL_KRNCHAR4BDLCHAR4
KRN_TOR/3 kernel release BDL_KRNCHAR4BDLCHAR4
KPL_FROMR/3 Kernel patch level BDL_KPLNUMC4NUMC4
KPL_TOR/3 Kernel patch level BDL_KPLNUMC4NUMC4
RESTRICTFlexible restrictions, e.g. IBU specific BDL_RSTRCTCHAR10CHAR10
TO_BE_SENTSending of data allowed BDL_SENDCHAR1CHAR1
MANDATORYSending of data essential for check? BDL_MNDTYCHAR1CHAR1
INCL_GENStatus of object BDL_STATCHAR1CHAR1
STATUSStatus of object BDL_STATCHAR1CHAR1
CHGSTAMPABAP Time Stamp ABSTAMPCHAR14TIMESTMP

Key field Non-key field



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

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

SELECT SINGLE *
FROM BDLFUVERS
INTO CORRESPONDING FIELDS OF WA_BDLFUVERS
WHERE...

How to access SAP table BDLFUVERS

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

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