SAP COMC_SETTYP_ATTR Administrative Table for Set Type Attribute Information Table data and field list

COMC_SETTYP_ATTR is a standard SAP Table which is used to store Administrative Table for Set Type Attribute Information data in SAP systems, such as SAP R/3, S/4HANA, depending on the version and release level.

The COMC_SETTYP_ATTR table consists of various fields, each holding specific information or linking keys about Administrative Table for Set Type Attribute Information data available in SAP. These include SETTYP_ATTR_GUID (Internal Key of a Set Type), SETTYPE_GUID (Internal Key of a Set Type), SETTYPE_ID (Identification of a Set Type), ATTRIBUTE_GUID (Attribute GUID)... 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_SETTYP_ATTR 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: Cannot Be Enhanced


SAP COMC_SETTYP_ATTR 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_SETTYP_ATTR 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
SETTYP_ATTR_GUIDInternal Key of a Set Type COMT_FRGTYPE_GUID32CHAR32SYSUUID_C
SETTYPE_GUIDInternal Key of a Set Type COMT_FRGTYPE_GUID32CHAR32Assigned to domainSYSUUID_C
SETTYPE_IDIdentification of a Set Type COMT_FRGTYPE_IDCHAR16CHAR16COM_SETTYPE_GENERATED
ATTRIBUTE_GUIDAttribute GUID COMT_ATTR_GUIDCHAR32Assigned to domainSYSUUID_C
ATTRIBUTE_IDAttribute COMT_ATTR_ID_30CHAR30ATTR_ID_30COM_ATTRIBUTCOM_ATTRIBUTE_SH
FIELD_NAMEField name NAME_FELDCHAR30Assigned to domainFDNAMEDFD
MULT_VAL_FLAGIndicator Whether Attribute Has Multiple Values COMT_MULTIVALUECHAR1COM_BOOLEAN
CONFIG_TYPEConfiguration Relevancy of Attribute COMT_CONFIG_TYPECHAR2COM_CONFIG_TYPE
BW_RELEVANTBW-Relevant COMT_BW_RELCHAR1COM_BOOLEAN
BW_SELECTIONRelevant for BW Selection COMT_BW_SELCHAR1COM_BOOLEAN
GENFLAGSet Type Has Been Generated COMT_FRGTYPE_GENFLAGCHAR1XFELD
KEY_FLAGAttribute Is Used as Key Field COMT_KEY_FLAGCHAR1COM_BOOLEAN
VALID_FROMValid From (Time Stamp) COMT_VALID_FROMDEC15TSTPSBCOS_TSTMP
UPNAMEName of the User Who Last Changed the Set COMT_UPNAMECHAR12UNAME
LONG_FIELD_NAMEField name NAME_FELDCHAR30Assigned to domainFDNAMEDFD
INCL_EEW_FLAGLogical Variable COMT_BOOLEANCHAR1COM_BOOLEAN

Key field Non-key field



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

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

SELECT SINGLE *
FROM COMC_SETTYP_ATTR
INTO CORRESPONDING FIELDS OF WA_COMC_SETTYP_ATTR
WHERE...

How to access SAP table COMC_SETTYP_ATTR

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

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