SAP BBPC_SUS_TABDEF Definition of Displayable Fields in a Table Item Table data and field list

BBPC_SUS_TABDEF is a standard SAP Table which is used to store Definition of Displayable Fields in a Table Item data in SAP systems, such as SAP R/3, S/4HANA, depending on the version and release level.

The BBPC_SUS_TABDEF table consists of various fields, each holding specific information or linking keys about Definition of Displayable Fields in a Table Item data available in SAP. These include TABLENAME (Table Name), COLUMNNAME (Field Name), COL_TYPE (Display Type of a Table Column), ACTION_ID (Identifier of an Action)... 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_SUS_TABDEF table Technical Details:

Delivery Class: E - Control table, SAP and customer have separate key areas
Display/Maintenance via tcode SM30: Display/Maintenance Allowed but with Restrictions
SAP enhancement categories: Can be enhanced (character-type or numeric)


SAP BBPC_SUS_TABDEF 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_SUS_TABDEF 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 MANDTCLNT3Assigned to domainMANDT
TABLENAMETable Name BBP_SUS_TABLECHAR30CHAR30
COLUMNNAMEField Name BBP_SUS_FIELDCHAR30CHAR30
COL_TYPEDisplay Type of a Table Column BBP_SUS_UI_FIELD_TYPECHAR10BBPC_SUS_COLDEFCHAR10
ACTION_IDIdentifier of an Action BBP_SUS_ACTION_IDCHAR32BBP_SUS_CHAR32_CS
POS_IN_ROWPosition Within a Table Row BBP_SUS_POS_IN_ROWINT13INT1
POS_IN_COLPosition Within a Cell BBP_SUS_POS_IN_COLINT13INT1
NO_DISP_IF_EMPTYNo Display of Iterator if Field is Empty BBP_SUS_NOT_DISP_IF_EMPTYCHAR1XFELD
SORTSort SRM SUS Iterator BBP_SUS_SORT_CHAR1XFELD
WRAPPINGIterator for Column Header Wrapping in SRM SUS BBP_SUS_WRAPPINGCHAR1XFELD
OTR_ALIASAlias for OTR Entry BBP_SUS_TABDEF_OTR_ALIASCHAR80SYCHAR80
IMAGE_LINKIterator Image Link BBP_SUS_TABDEF_IMAGECHAR100BBP_LA_CHAR100
IMAGE_OTR_ALIASOTR Image Alias for SRM SUS Iterator BBP_SUS_TABDEF_IMAGE_OTR_ALIASCHAR80CHAR80
HEADER_TYPEField Type for Header Row BBP_SUS_TABDEF_HEAD_TCHAR50BBP_SUS_TABDEF_HEAD_T
HEADER_ACTIONHeader cell action BBP_SUS_TABDEF_HEADER_ACHAR32BBP_SUS_CHAR32_CS
SWITCH_IDCustomizing Switch ID /SAPSRM/CUSTMZ_SWITCH_IDCHAR30Assigned to domain/SAPSRM/CUSTMZ_SWITCH_ID/SAPSRM/SH_CUSTMZ_SWITCHES

Key field Non-key field



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

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

SELECT SINGLE *
FROM BBPC_SUS_TABDEF
INTO CORRESPONDING FIELDS OF WA_BBPC_SUS_TABDEF
WHERE...

How to access SAP table BBPC_SUS_TABDEF

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

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