SAP BBP_PDLIM Value Limit Table data and field list

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

The BBP_PDLIM table consists of various fields, each holding specific information or linking keys about Value Limit data available in SAP. These include GUID (Globally Unique identifier), SET_GUID (Set GUID), LIMIT (Overall Limit), UNLIMITED (Undefined Limit)... 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. .

BBP_PDLIM 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 BBP_PDLIM 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 BBP_PDLIM 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
CLIENTClient EC_CLIENTCLNT3Assigned to domainMANDT
GUIDGlobally Unique identifier BBP_GUIDRAW16SYSUUID
SET_GUIDSet GUID BBP_SETGUIDRAW16SYSUUID
LIMITOverall Limit BBP_LIMITCURR15(2) WERT8
UNLIMITEDUndefined Limit BBP_UNLIMITEDCHAR1CHAR01
EXP_VALUEExpected value BBP_EXP_VALUECURR15(2) WERT8
CURRENCYCurrency Key WAERSCUKY5Assigned to domainWAERSFWS
CATEGORYProduct Category GUID BBP_CATEGORY_GUID_RAWRAW16SYSUUID
CATEGORY_IDProduct Category ID BBP_CATEGORY_IDCHAR20COM_CATEGORY_IDCOM_CAT
FINAL_INVFinal invoice indicator BBP_EREKZCHAR1XFELD
FINAL_ENTRYFinal Entry Indicator (Goods/Services) BBP_FINAL_ENTRYCHAR1XFELD
DEL_INDDeletion Indicator SRM Purchasing Document BBP_DEL_INDCHAR1XFELD
LIM_TYPEType of the (Partial) Limit BBP_LIM_TYPECHAR1BBP_LIM_TYPE
LIM_REF_H_IDHeader Number of the Object that the Limit Refers to BBP_LIM_REF_H_IDCHAR40
LIM_REF_I_IDItem Number of the Object that the Limit Refers to BBP_LIM_REF_I_IDCHAR40
LIM_REF_H_GUIDHeader Unique ID of the Object that the Limit Refers to BBP_LIM_REF_H_GUIDRAW16SYSUUID
LIM_REF_I_GUIDItem Unique ID of the Object that the Limit Refers to BBP_LIM_REF_I_GUIDRAW16SYSUUID
LIM_REF_LOG_SYSBusiness Document Service: ID of Logical System BBP_LOGSYSCHAR10CHAR10
ACCEPT_LIMITAccept Limit BBP_ACCEPT_LIMITCHAR1XFELD
VAL_ASN_EShipping Notification Value Entered BBP_ASN_VALUE_ECURR15(2) WERT8
VAL_ASNShip Note Value Released BBP_ASN_VALUECURR15(2) WERT8
VAL_CF_EValue of Entered Confirmations BBP_CF_VALUE_ECURR15(2) WERT8
VAL_CFValue of Confirmations Released BBP_CF_VALUECURR15(2) WERT8
VAL_IV_EEntered Invoice Value BBP_IV_VALUE_ECURR15(2) WERT8
VAL_IVReleased Invoice Value BBP_IV_VALUECURR15(2) WERT8
VAL_PO_EValue of POs/Confirmations/Invoices Created for Contract BBP_PO_VALUE_ECURR15(2) WERT8
VAL_PO_E_AGGValue PO / Confirm. / Inv. for Contract Hierarchy BBP_AGG_VALUE_ECURR15(2) WERT8
NUM_CONFNumber of Entered Confirmations for a Purchase Order BBP_NUM_CONFINT410BBP_INT4V
NUM_INVNumber of Entered Invoices for Purchase Order or Confirmat. BBP_NUM_INVINT410BBP_INT4V

Key field Non-key field



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

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

SELECT SINGLE *
FROM BBP_PDLIM
INTO CORRESPONDING FIELDS OF WA_BBP_PDLIM
WHERE...

How to access SAP table BBP_PDLIM

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

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