SAP BBPD_THRESH_CHK Contains threshold values for Contract Header and Item Table data and field list

BBPD_THRESH_CHK is a standard SAP Table which is used to store Contains threshold values for Contract Header and Item data in SAP systems, such as SAP R/3, S/4HANA, depending on the version and release level.

The BBPD_THRESH_CHK table consists of various fields, each holding specific information or linking keys about Contains threshold values for Contract Header and Item data available in SAP. These include PROC_TYPE (Business Transaction Type), TAR_HVAL (Contract header:Relationship of release value to total value), EXPIRY_DAYS (Time Frame Before Contract Validity End (in Days)), TAR_IVAL (Relationship of Release Value to Target Value (in Percent))... 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. .

BBPD_THRESH_CHK table Technical Details:

Delivery Class: C - Customising table, maintenance only by cust
Display/Maintenance via tcode SM30: Display/Maintenance Allowed but with Restrictions
SAP enhancement categories: Can be enhanced (character-type or numeric)


SAP BBPD_THRESH_CHK 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 BBPD_THRESH_CHK 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 MANDTCLNT3Assigned to domainMANDT
PROC_TYPEBusiness Transaction Type BBP_PROC_TYPECHAR4BBPC_PROC_TYPEBBP_PROC_TYPEBBP_PROCESS_TYPE
TAR_HVALContract header:Relationship of release value to total value BBP_PER_HVALDEC3DEC3
EXPIRY_DAYSTime Frame Before Contract Validity End (in Days) BBP_EXPIRY_DAYSNUMC3NUMC3
TAR_IVALRelationship of Release Value to Target Value (in Percent) BBP_PER_IVALDEC3DEC3
TAR_QTYRelationship of Release Quantity to Target Quantity (in Per) BBP_PER_QTYDEC3DEC3

Key field Non-key field



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

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

SELECT SINGLE *
FROM BBPD_THRESH_CHK
INTO CORRESPONDING FIELDS OF WA_BBPD_THRESH_CHK
WHERE...

How to access SAP table BBPD_THRESH_CHK

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

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