SAP LDLBP Line balance items Table data and field list

LDLBP is a standard SAP Table which is used to store Line balance items data in SAP systems, such as SAP R/3, S/4HANA, depending on the version and release level.

The LDLBP table consists of various fields, each holding specific information or linking keys about Line balance items data available in SAP. These include LNID (Object ID of the resource), LBVER (Line balancing version), POSID (Numeric field: Length 6), POSNR (Model Mix Item)... 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. .

LDLBP table Technical Details:

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 LDLBP 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 LDLBP 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
LNIDObject ID of the resource CR_OBJIDNUMC8CRIDCR_OBJID
LBVERLine balancing version LD_LBVERNUMC4LDLBHLD_LBVERLBV
POSIDNumeric field: Length 6 NUM06NUMC6NUM06
POSNRModel Mix Item LD_MMPOSNRNUMC4
MATNRMaterial Number MATNRCHAR18Assigned to domainMATN1MATNRMATS_MAT1
WERKSPlant WERKS_DCHAR4Assigned to domainWERKSWRKH_T001W_C
MRATERate for material LD_MRATEQUAN13(3) MENG13
MEINSBase Unit of Measure MEINSUNIT3Assigned to domainCUNITMEINS
PLNTYTask List Type PLNTYCHAR1TCA01PLNTYPTYH_TCA01
PLNNRKey for Task List Group PLNNRCHAR8ALPHAPLNNRPLNPLKS
PLNALGroup Counter PLNALCHAR2ALPHAALTNRPAL
VERIDProduction Version VERIDCHAR4Assigned to domainVERIDVER
ERFMEUnit of Entry LD_ERFMEUNIT3Assigned to domainCUNITMEINS

Key field Non-key field



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

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

SELECT SINGLE *
FROM LDLBP
INTO CORRESPONDING FIELDS OF WA_LDLBP
WHERE...

How to access SAP table LDLBP

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

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