SAP BBPC_CTRL_PAR Document-Specific Control Parameters for Transaction Type Table data and field list

BBPC_CTRL_PAR is a standard SAP Table which is used to store Document-Specific Control Parameters for Transaction Type data in SAP systems, such as SAP R/3, S/4HANA, depending on the version and release level.

The BBPC_CTRL_PAR table consists of various fields, each holding specific information or linking keys about Document-Specific Control Parameters for Transaction Type data available in SAP. These include PROCESS_TYPE (Business Transaction Type), BID_TYPE (Type of RFx), USE_CONDITIONS (Indicator: Detailed Price Info to be Entered in Bid), QUAN_CONTROL (Quantity Check)... 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. .

BBPC_CTRL_PAR table Technical Details:

Delivery Class: G - Customising table which is protected against SAP Update
Display/Maintenance via tcode SM30: Display/Maintenance Allowed but with Restrictions
SAP enhancement categories: Can be enhanced (character-type)


SAP BBPC_CTRL_PAR 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 BBPC_CTRL_PAR 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 MANDTCLNT3T000MANDT
PROCESS_TYPEBusiness Transaction Type BBP_PROC_TYPECHAR4BBPC_PROC_TYPEBBP_PROC_TYPEBBP_PROCESS_TYPE
BID_TYPEType of RFx BBP_BID_TYPECHAR1BBP_BIDTYPE
USE_CONDITIONSIndicator: Detailed Price Info to be Entered in Bid BBP_USE_CONDITIONSCHAR1BBP_USE_CONDITIONS
QUAN_CONTROLQuantity Check BBP_QUAN_CONTROLCHAR1BBP_QUAN_CONTROL
ADD_ITEMS_INDIndicates Whether Items may be Added BBP_ADD_ITEMS_INDCHAR1XFELD
SHOW_WEIGHIN_INDDisplay Weighting to Bidders BBP_SHOW_WEIGHING_INDCHAR1XFELD
BID_ALL_ITMS_INDYou have to bid on all Items BBP_BID_ALL_ITEMS_INDCHAR1XFELD
BID_VALIDATIONBid Validation BBP_BID_VALIDATIONCHAR1BBP_BID_VALIDATION
DECR_TYPEType of Bid Decrement: Absolute or Percentage BBP_DECREMENT_TYPECHAR1BBP_DECREMENT_TYPE
BID_CHG_ALLOWEDBid May be Changed BBP_BID_CHANGE_ALLOWEDCHAR1XFELD
COMP_MULTI_BIDAllow Multiple Bids per Company BBP_COMP_MULTI_BIDCHAR1XFELD
FULL_QTY_INDBidder Cannot Change Quantity Details BBP_BID_FULL_QTY_INDCHAR1XFELD
INRPRCReserve price indicator BBP_LA_INRPRCCHAR1XFELD
INRANKRank indicator BBP_LA_INRANKCHAR1XFELD
INCRNKCompany best bid rank indicator BBP_LA_INCRNKCHAR1XFELD
INBSBDBest bid indicator BBP_LA_INBSBDCHAR1XFELD
INCBSBCompany best bid indicator BBP_LA_INCBSBCHAR1XFELD
INNXBDNext bid value indicator BBP_LA_INNXBDCHAR1XFELD
INFRSTFirst place indicator BBP_LA_INFRSTCHAR1XFELD
INHUFBHide until first valid bid indicator BBP_LA_INHUFBCHAR1XFELD
INCOMPCompany name indicator BBP_LA_INCOMPCHAR1XFELD
INBIDNBidder name indicator BBP_LA_INBIDNCHAR1XFELD
INBDPRBidder price indicator for bid history BBP_LA_INBDPRCHAR1XFELD
INAEXTAuction extension indicator BBP_LA_INAEXTCHAR1XFELD
INNMBDNumber of invited bidders indicator BBP_LA_INNMBDCHAR1XFELD
SNDCHTSend button of chat panel indicator BBP_LA_SNDCHTCHAR1XFELD
INCBIDHide competitors' bids BBP_LA_INCBIDCHAR1XFELD
CTBDNRBid chart indicator BBP_LA_CTBDNRCHAR1XFELD
CTBDVLBid volume chart indicator BBP_LA_CTBDVLCHAR1XFELD
CTBDBSBest bid by bidder chart indicator BBP_LA_CTBDBSCHAR1XFELD
RNOTIERank without ties indicator BBP_LA_RNOTIECHAR1XFELD
RWTTIERank with ties allowed indicator BBP_LA_RWTTIECHAR1XFELD
INCLPRCeiling Price Indicator BBP_LA_CEILING_PRICE_INDCHAR1XFELD
ALLOW_TEAM_PURCHTeam Purchasing: Customizing /SAPSRM/TEAMPPURCH_CUSTOMIZECHAR1/SAPSRM/TEAMPPURCH_CUSTOMIZE
BEGDAStart Date BEGDATUMDATS8DATUMBEG
ENDDAEnd Date ENDDATUMDATS8DATUMEND
TP_CRSORG_ASSGMTTeam Purchasing: Cross Organizational Assignment /SAPSRM/TEAMPPURCH_CROSSORGCHAR1/SAPSRM/TEAMPPURCH_CROSSORG
OFFLINE_INDOffline Indicator for Bid BBP_BID_OFFLINE_INDCHAR1XFELD
BIDDING_SYSTEMSystem in Which Bidding Takes Place BBP_BIDDING_SYSTEMCHAR1BBP_BIDDING_SYSTEM
LIMIT_CTRL_FLAGDefine Limits As BBP_LIMIT_CTRLCHAR1BBP_LIMIT_CTRL
BBP_MENV_SCHEMAMulti-Envelope Schema ID BBP_MENV_SCHEME_IDCHAR4BBP_MENV_SCHEME_ID

Key field Non-key field



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

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

SELECT SINGLE *
FROM BBPC_CTRL_PAR
INTO CORRESPONDING FIELDS OF WA_BBPC_CTRL_PAR
WHERE...

How to access SAP table BBPC_CTRL_PAR

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

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