SAP CMS_STR_PRD Product Text Table data and field list

CMS_STR_PRD is a standard SAP Structure so does not store data like a database table does. It can be used to define the fields of other actual tables or to process "Product Text" Information within sap ABAP programs.

This is done by declaring abap internal tables, work areas or database tables based on this Structure. These can then be used to store and process the required data appropriately.

i.e. DATA: wa_CMS_STR_PRD TYPE CMS_STR_PRD.

The CMS_STR_PRD table consists of various fields, each holding specific information or linking keys about Product Text data available in SAP. These include PRD_CLASS (Product Class), CATEGORYID (Product Category Identification No), DEF_COV_RATIO (Security to Loan Ratio), CREDITSYSTEM (Credit System)... 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. .

CMS_STR_PRD structure Technical Details:

Delivery Class:
Display/Maintenance via tcode SM30: Display/Maintenance Allowed but with Restrictions
SAP enhancement categories: Not classified


SAP CMS_STR_PRD structure 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 CMS_STR_PRD 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
PRD_CLASSProduct Class CMS_DTE_PRD_CLASSCHAR6Assigned to domainCMS_PRD_CLASSCMS_PRD_CLASSCMS_PRD_CLASS
CATEGORYIDProduct Category Identification No CMS_DTE_PRD_CATCHAR6TCMS_PRD_CATCMS_CAT
DEF_COV_RATIOSecurity to Loan Ratio CMS_DTE_COV_RATIODEC10(6) CMS_PCT
CREDITSYSTEMCredit System CMS_DTE_RBL_CRDSYSCHAR3Assigned to domainCMS_RBL_CRDSYSCREDITSYSTEM
IND_ORG_ROLEIndicator: Role of the Organization in the Product CMS_DTE_PRD_IND_ORG_RLCHAR2CMS_PRD_IND_ORG_RL
ACCESSMODEAccessmode of Receivable CMS_DTE_RBL_ACCESSCHAR2CMS_RBL_ACCESS
FLG_GROUPIndicates that the Product Class is a Global Limit CMS_DTE_RBL_GROUPFLGCHAR1CMS_FLG
FSTAT_VARObject Screen (Field Status Variant) CMS_DTE_FSTAT_VARCHAR10TCMS_BDT_FSTATCMS_FSTAT_VAR
BPF_SETBusiness Partner Function Set CMS_DTE_BPF_SETCHAR6CMS_SETCMS_BPF_SET
NAMEProduct Name in a Specified Language CMS_DTE_PRD_NAMECHAR40CMS_NAME

Key field Non-key field



How do I retrieve data from SAP structure CMS_STR_PRD using ABAP code?

As CMS_STR_PRD is a database structure and not a table it does not store any data in the SAP data dictionary. The ABAP SELECT statement is therefore not appropriate and can not be performed on CMS_STR_PRD as there is no data to select.

How to access SAP table CMS_STR_PRD

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

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