DMC_STRUCT SAP (Sender Structure or Recipient Structure) Table details

Dictionary Type: Table
Description: Sender Structure or Recipient Structure




ABAP Code to SELECT data from DMC_STRUCT
Related tables to DMC_STRUCT
Access table DMC_STRUCT




Table field list including key, data, relationships and ABAP select examples

DMC_STRUCT is a standard SAP Table which is used to store Sender Structure or Recipient Structure data and is available within R/3 SAP systems depending on the version and release level.

The DMC_STRUCT table consists of various fields, each holding specific information or linking keys about Sender Structure or Recipient Structure data available in SAP. These include STREE (GUID in 'CHAR' format with upper-/lowercase (!)), FDDIC (Boolean Variable (X=True, -=False, Space=Unknown)), DDICNAME (Name of an ABAP Dictionary object), TABCLASS (Table category).. 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. .

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 DMC_STRUCT table fields - Full list of fields found in SAP data dictionary

Field Description Data Element Data Type length (Dec) Check table Conversion Routine Domain Name MemoryID SHLP
GUIDGUID in 'CHAR' format with upper-/lowercase (!) GUID_22CHAR22SYSUUID_22
STREEGUID in 'CHAR' format with upper-/lowercase (!) GUID_22CHAR22SYSUUID_22
FDDICBoolean Variable (X=True, -=False, Space=Unknown) BOOLEANCHAR1BOOLEAN
DDICNAMEName of an ABAP Dictionary object DDNAMECHAR30DDNAME
TABCLASSTable category TABCLASSCHAR8TABCLASS
IDENTTree Structure ID DMC_STIDTCHAR20DMC_STIDT
CHNAMUser Name SYUNAMECHAR12SYCHAR12
CHANGEDATESystem Date SYDATUMDATS8SYDATS
VERSIOVersion Number of Objects DMC_VERSIONUMC4DMC_VERSIO
AUTHORUser Name SYUNAMECHAR12SYCHAR12
CREATEDATESystem Date SYDATUMDATS8SYDATS
DESCRDescription DMC_DESCRCHAR60DMC_DSTR
AS4TIMELast changed at AS4TIMETIMS6AS4TIME
AS4DATEDate of Last Change AS4DATEDATS8AS4DATE
TECHNICALDMC: Flag if structure or field is technical or not DMC_TECHNCHAR1BOOLEAN
USES_STRINGSBoolean Variable (X=True, -=False, Space=Unknown) BOOLEANCHAR1BOOLEAN
APPL_INSERTMWB: Application Insert (Yes/No) DMC_APPL_INSERTCHAR1BOOLEAN
READONLYBoolean Variable (X=True, -=False, Space=Unknown) BOOLEANCHAR1BOOLEAN
UC_CODEPAGESAP Character Set ID CPCODEPAGENUMC4Assigned to domainCPCODEPAGE
TYPING_CLASSDMC: Indicator for type class (TTYP, REF, STRUC,...) DMC_TYPINGCHAR1DMC_TYPING

Key field Non-key field



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

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

SELECT SINGLE *
FROM DMC_STRUCT
INTO CORRESPONDING FIELDS OF WA_DMC_STRUCT
WHERE...

How to access SAP table DMC_STRUCT

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

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


Search for further information about these or an SAP related objects



Comments on this SAP object

What made you want to lookup this SAP object? Please tell us what you were looking for and anything you would like to be included on this page!