SAP EAMWS_RM_SYSTEM Connection to Risk Management System Table data and field list

EAMWS_RM_SYSTEM is a standard SAP Table which is used to store Connection to Risk Management System data in SAP systems, such as SAP R/3, S/4HANA, depending on the version and release level.

The EAMWS_RM_SYSTEM table consists of various fields, each holding specific information or linking keys about Connection to Risk Management System data available in SAP. These include RFC_RM (RFC Connection to Risk Management System), LOGSYS_EAM (Logical System of Enterprise Asset Management (EAM) System), RM_SYS_IDENT (Risk Management System ID)... 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. .

EAMWS_RM_SYSTEM table Technical Details:

Delivery Class: C - Customising table, maintenance only by cust
Display/Maintenance via tcode SM30: Display/Maintenance Allowed but with Restrictions
SAP enhancement categories: Can be enhanced (character-type)


SAP EAMWS_RM_SYSTEM 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 EAMWS_RM_SYSTEM 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
RFC_RMRFC Connection to Risk Management System EAMWS_RM_RFCCHAR32Assigned to domainRFCDESTF4_RFCDES3
LOGSYS_EAMLogical System of Enterprise Asset Management (EAM) System EAMWS_EAM_LOGSYSCHAR10Assigned to domainALPHALOGSYSEAMWS_LOGSYS
RM_SYS_IDENTRisk Management System ID EAMWS_RM_IDENTCHAR1EAMWS_RM_IDENT

Key field Non-key field



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

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

SELECT SINGLE *
FROM EAMWS_RM_SYSTEM
INTO CORRESPONDING FIELDS OF WA_EAMWS_RM_SYSTEM
WHERE...

How to access SAP table EAMWS_RM_SYSTEM

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

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