SAP LDLBH Line balance/planned rate header record Table data and field list

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

The LDLBH table consists of various fields, each holding specific information or linking keys about Line balance/planned rate header record data available in SAP. These include LNID (Object ID of the resource), LBVER (Line balancing version), STATU (Status of line balance), LD_PERST (Period start)... 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. .

LDLBH 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 LDLBH 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 LDLBH 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_LBVERNUMC4LD_LBVERLBV
STATUStatus of line balance LD_STATUCHAR1LD_STATU
LD_PERSTPeriod start LD_PERSTDATS8DATUM
LD_PEREDPeriod end LD_PEREDDATS8DATUM
LRATEPlanned rate for production line LD_LRATE_PLANQUAN13(3) MENG13
LANTUNumber of time units LD_LANTUQUAN5(2) LD_LANTU
TKZTITakt time (in seconds) LD_TKZTIDEC8DEC8
LBTXTLine balance description LD_LBTXTCHAR40TEXT40
RIDVNStart of period for reqmts/receipt determination LD_DPRVNDATS8DATUM
RIDBSEnd of period for reqmts/receipt determination LD_DPRBSDATS8DATUM
AENNRChange Number AENNRCHAR12AENRAENNRAENNRAEN
ANDATDate record created on ANDATDATS8DATUM
ANNAMUser who created record ANNAMCHAR12USNAM
AEDATChanged On AEDATDATS8DATUM
AENAMName of Person Who Changed Object AENAMCHAR12USNAM
LBAL_MAXIndicator: balance line to max. load utiliz. of prod. line LD_LBAL_MAXCHAR1AS4FLAG
TKTAGTakt comparison for line LD_TKTAGDEC5(2) LD_TKTAG

Key field Non-key field



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

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

SELECT SINGLE *
FROM LDLBH
INTO CORRESPONDING FIELDS OF WA_LDLBH
WHERE...

How to access SAP table LDLBH

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

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