SAP MEMGMT_DEPLOYMNT Deployment of the Device Configurations Table data and field list

MEMGMT_DEPLOYMNT is a standard SAP Table which is used to store Deployment of the Device Configurations data in SAP systems, such as SAP R/3, S/4HANA, depending on the version and release level.

The MEMGMT_DEPLOYMNT table consists of various fields, each holding specific information or linking keys about Deployment of the Device Configurations data available in SAP. These include DEVICE_TEMPL_ID (Device Configuration ID), DEVICE_ID (Unique ID of Device), USERNAME (User Name in User Master Record), MAP_TYPE_ID (Assignment Type for Device Configuration)... 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. .

MEMGMT_DEPLOYMNT 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: Can Be Enhanced (Deep)


SAP MEMGMT_DEPLOYMNT 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 MEMGMT_DEPLOYMNT 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
MANDTClient MANDTCLNT3Assigned to domainMANDT
DEVICE_TEMPL_IDDevice Configuration ID MEMGMT_DIDCHAR12MEMGMT_DID
DEVICE_IDUnique ID of Device MEDEVGUIDCHAR36MEGUID
USERNAMEUser Name in User Master Record XUBNAMECHAR12Assigned to domainXUBNAMEXUS
MAP_TYPE_IDAssignment Type for Device Configuration MEMGMT_MAP_TYPECHAR12MEMGMT_MAP_TYPESMEMGMT_MAP_ID
MAP_VALUEValue for Assignment Type of Device Configuration MEMGMT_MVALUECHAR70MEMGMT_TEXT60
MODIFY_DATESystem Date SYDATUMDATS8SYDATS
MODIFY_TIMESystem Time SYUZEITTIMS6SYTIME
DELETEDGeneral Flag FLAGCHAR1FLAG

Key field Non-key field



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

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

SELECT SINGLE *
FROM MEMGMT_DEPLOYMNT
INTO CORRESPONDING FIELDS OF WA_MEMGMT_DEPLOYMNT
WHERE...

How to access SAP table MEMGMT_DEPLOYMNT

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

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