SAP /SCWM/TMFSCERRMP_READ_SINGLE Function Module for Read Error Code Mapping for Communication Errors
/SCWM/TMFSCERRMP_READ_SINGLE is a standard /scwm/tmfscerrmp read single SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Read Error Code Mapping for Communication Errors processing and below is the pattern details for this FM, showing its interface including any import and export parameters, exceptions etc. there is also a full "cut and paste" ABAP pattern code example, along with implementation ABAP coding, documentation and contribution comments specific to this or related objects.
See here to view full function module documentation and code listing for /scwm/tmfscerrmp read single FM, simply by entering the name /SCWM/TMFSCERRMP_READ_SINGLE into the relevant SAP transaction such as SE37 or SE38.
Function Group: /SCWM/MFS_CUST_SEL
Program Name: /SCWM/SAPLMFS_CUST_SEL
Main Program: /SCWM/SAPLMFS_CUST_SEL
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function /SCWM/TMFSCERRMP_READ_SINGLE pattern details
In-order to call this FM within your sap programs, simply using the below ABAP pattern details to trigger the function call...or see the full ABAP code listing at the end of this article. You can simply cut and paste this code into your ABAP progrom as it is, including variable declarations.CALL FUNCTION '/SCWM/TMFSCERRMP_READ_SINGLE'"Read Error Code Mapping for Communication Errors.
EXPORTING
IV_LGNUM = "Lagernummer/Lagerkomplex
IV_PLC = "SPS Speicherprogrammierbare Steuerung
IV_COMM_ERROR = "Fehler im Telegramm
IMPORTING
ES_TMFSCERMPI = "Ermittlung Ausnahmecode für Kommunikationsfehler
EXCEPTIONS
/SCWM/CX_MFS = 1
IMPORTING Parameters details for /SCWM/TMFSCERRMP_READ_SINGLE
IV_LGNUM - Lagernummer/Lagerkomplex
Data type: /SCWM/LGNUMOptional: No
Call by Reference: Yes
IV_PLC - SPS Speicherprogrammierbare Steuerung
Data type: /SCWM/DE_MFSPLCOptional: No
Call by Reference: Yes
IV_COMM_ERROR - Fehler im Telegramm
Data type: /SCWM/DE_MFS_COMM_ERROROptional: No
Call by Reference: Yes
EXPORTING Parameters details for /SCWM/TMFSCERRMP_READ_SINGLE
ES_TMFSCERMPI - Ermittlung Ausnahmecode für Kommunikationsfehler
Data type: /SCWM/TMFSCERMPIOptional: No
Call by Reference: Yes
EXCEPTIONS details
/SCWM/CX_MFS - MFS allgemeine Fehlerklasse
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
Copy and paste ABAP code example for /SCWM/TMFSCERRMP_READ_SINGLE Function Module
The ABAP code below is a full code listing to execute function module POPUP_TO_CONFIRM including all data declarations. The code uses the original data declarations rather than the latest in-line data DECLARATION SYNTAX but I have included an ABAP code snippet at the end to show how declarations would look using the newer method of declaring data variables on the fly. This will allow you to compare and fully understand the new inline method. Please note some of the newer syntax such as the @DATA is not available until a later 4.70 service pack (SP8), which i why i have stuck to the origianl for this example.| DATA: | ||||
| lv_iv_lgnum | TYPE /SCWM/LGNUM, " | |||
| lv_/scwm/cx_mfs | TYPE /SCWM/LGNUM, " | |||
| lv_es_tmfscermpi | TYPE /SCWM/TMFSCERMPI, " | |||
| lv_iv_plc | TYPE /SCWM/DE_MFSPLC, " | |||
| lv_iv_comm_error | TYPE /SCWM/DE_MFS_COMM_ERROR. " |
|   CALL FUNCTION '/SCWM/TMFSCERRMP_READ_SINGLE' "Read Error Code Mapping for Communication Errors |
| EXPORTING | ||
| IV_LGNUM | = lv_iv_lgnum | |
| IV_PLC | = lv_iv_plc | |
| IV_COMM_ERROR | = lv_iv_comm_error | |
| IMPORTING | ||
| ES_TMFSCERMPI | = lv_es_tmfscermpi | |
| EXCEPTIONS | ||
| /SCWM/CX_MFS = 1 | ||
| . " /SCWM/TMFSCERRMP_READ_SINGLE | ||
ABAP code using 7.40 inline data declarations to call FM /SCWM/TMFSCERRMP_READ_SINGLE
The below ABAP code uses the newer in-line data declarations. This allows you to see the coding differences/benefits of the later inline syntax. Please note some of the newer syntax below, such as the @DATA is not available until 4.70 EHP 8.Search for further information about these or an SAP related objects