SAP COMC_SETTYPE_STR Names of Structures for SAP Set Types Table data and field list

COMC_SETTYPE_STR is a standard SAP Table which is used to store Names of Structures for SAP Set Types data in SAP systems, such as SAP R/3, S/4HANA, depending on the version and release level.

The COMC_SETTYPE_STR table consists of various fields, each holding specific information or linking keys about Names of Structures for SAP Set Types data available in SAP. These include SETTYPE_TABLE (Name of ABAP Dictionary Object), SETTYPE_HTAB (Name of ABAP Dictionary Object), SORTED_TABLE (Name of ABAP Dictionary Object), MAINTAIN_TABLE (Name of ABAP Dictionary Object)... 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. .

COMC_SETTYPE_STR table Technical Details:

Delivery Class: S - System table, maint. only by SAP, change = modification
Display/Maintenance via tcode SM30: Display/Maintenance Allowed but with Restrictions
SAP enhancement categories: Cannot Be Enhanced


SAP COMC_SETTYPE_STR 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 COMC_SETTYPE_STR 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
SETTYPE_IDIdentification of a Set Type COMT_FRGTYPE_IDCHAR16CHAR16COM_SETTYPE_GENERATED
SETTYPE_TABLEName of ABAP Dictionary Object DDOBJNAMECHAR30DDOBJNAMEDOB
SETTYPE_HTABName of ABAP Dictionary Object DDOBJNAMECHAR30DDOBJNAMEDOB
SORTED_TABLEName of ABAP Dictionary Object DDOBJNAMECHAR30DDOBJNAMEDOB
MAINTAIN_TABLEName of ABAP Dictionary Object DDOBJNAMECHAR30DDOBJNAMEDOB
MAINTAINName of ABAP Dictionary Object DDOBJNAMECHAR30DDOBJNAMEDOB
MULTI_VALUEName of ABAP Dictionary Object DDOBJNAMECHAR30DDOBJNAMEDOB
UPDATE_CHECKName of ABAP Dictionary Object DDOBJNAMECHAR30DDOBJNAMEDOB
UI_SINGE_VALUEName of ABAP Dictionary Object DDOBJNAMECHAR30DDOBJNAMEDOB
UI_MULTI_VALUEName of ABAP Dictionary Object DDOBJNAMECHAR30DDOBJNAMEDOB
VIEW_NAME_CURRName of ABAP Dictionary Object DDOBJNAMECHAR30DDOBJNAMEDOB
VIEW_NAME_HISTName of ABAP Dictionary Object DDOBJNAMECHAR30DDOBJNAMEDOB
SORTED_MV_TABLEName of ABAP Dictionary Object DDOBJNAMECHAR30DDOBJNAMEDOB
SETTYPE_DBTABName of ABAP Dictionary Object DDOBJNAMECHAR30DDOBJNAMEDOB
SETTYPE_DBTABHName of ABAP Dictionary Object DDOBJNAMECHAR30DDOBJNAMEDOB
MULTI_VALUE_HTABName of ABAP Dictionary Object DDOBJNAMECHAR30DDOBJNAMEDOB
MR_DATAName of ABAP Dictionary Object DDOBJNAMECHAR30DDOBJNAMEDOB
MR_DATA_TABName of ABAP Dictionary Object DDOBJNAMECHAR30DDOBJNAMEDOB
UI_MAINTName of ABAP Dictionary Object DDOBJNAMECHAR30DDOBJNAMEDOB
UI_MAINT_TABName of ABAP Dictionary Object DDOBJNAMECHAR30DDOBJNAMEDOB

Key field Non-key field



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

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

SELECT SINGLE *
FROM COMC_SETTYPE_STR
INTO CORRESPONDING FIELDS OF WA_COMC_SETTYPE_STR
WHERE...

How to access SAP table COMC_SETTYPE_STR

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

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