SAP BBP_DYNAT_MASTER Master Data for Dynamic Attributes Table data and field list

BBP_DYNAT_MASTER is a standard SAP Table which is used to store Master Data for Dynamic Attributes data in SAP systems, such as SAP R/3, S/4HANA, depending on the version and release level.

The BBP_DYNAT_MASTER table consists of various fields, each holding specific information or linking keys about Master Data for Dynamic Attributes data available in SAP. These include FIELDNAME (Field Name), ATTR_DOMNAME (Domain used), ATTR_DESCRIPTION (Comment on Dynamic Attribute), ATTR_DESCR_UC (Comment on Dynamic Attribute)... 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_DYNAT_MASTER 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: Cannot Be Enhanced

Text table = BBP_DYNAT_MSTR_T


SAP BBP_DYNAT_MASTER 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_DYNAT_MASTER 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
CLNTClient MANDTCLNT3Assigned to domainMANDT
FIELDNAMEField Name FIELDNAMECHAR30Assigned to domainFDNAMEDFD
ATTR_DOMNAMEDomain used DOM_REFCHAR30BBP_DYNAT_DOMMASDOMNAMEDD_DOMA
ATTR_DESCRIPTIONComment on Dynamic Attribute BBP_ATTR_COMMENT_255CHAR255TEXT255
ATTR_DESCR_UCComment on Dynamic Attribute BBP_ATTR_COMMENT_255CHAR255TEXT255
CREATED_BYUser that Created the Transaction CRMT_CREATED_BYCHAR12UNAMEUSER_ADDR
PRIV_PUB_INDICPrivate/Public Flag PRIV_PUB_INDICCHAR1PRIV_PUB_INDIC
MANDATORYIndicator: If an Attribute is a Required Entry Field BBP_ATTR_MANDATORYCHAR1XFELD
COMMENT_ALLOWEDComment Allowed BBP_ATTR_COMMENT_ALLOWEDCHAR1XFELD
DEL_INDDeletion Indicator SRM Purchasing Document BBP_DEL_INDCHAR1XFELD

Key field Non-key field



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

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

SELECT SINGLE *
FROM BBP_DYNAT_MASTER
INTO CORRESPONDING FIELDS OF WA_BBP_DYNAT_MASTER
WHERE...

How to access SAP table BBP_DYNAT_MASTER

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

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