SAP GRMG_INTERPRET_JAVA_WSIL Function Module for GRMG: Interprete the response of request or message
GRMG_INTERPRET_JAVA_WSIL is a standard grmg interpret java wsil SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for GRMG: Interprete the response of request or message 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 grmg interpret java wsil FM, simply by entering the name GRMG_INTERPRET_JAVA_WSIL into the relevant SAP transaction such as SE37 or SE38.
Function Group: GRMG
Program Name: SAPLGRMG
Main Program: SAPLGRMG
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Remote-Enabled
Update:

Function GRMG_INTERPRET_JAVA_WSIL 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 'GRMG_INTERPRET_JAVA_WSIL'"GRMG: Interprete the response of request or message.
EXPORTING
JAVA_WSIL_STRING = "GRMG: Table for scenario descriptions
SYSTEM_SID = "Name of the SAP System
* FM_TRACE = "GRMG: SelfMonitoring-Trace
IMPORTING
FM_OUT_ERROR = "General Flag
FM_OUT_SCEN_ERROR = "GRMG: Type for type
CHANGING
FM_OUT_SERVICES_ITAB = "
FM_CHG_ERROR_ITAB = "GRMG: Table type for error log
IMPORTING Parameters details for GRMG_INTERPRET_JAVA_WSIL
JAVA_WSIL_STRING - GRMG: Table for scenario descriptions
Data type: STRINGOptional: No
Call by Reference: No ( called with pass by value option)
SYSTEM_SID - Name of the SAP System
Data type: SYSYSIDOptional: No
Call by Reference: No ( called with pass by value option)
FM_TRACE - GRMG: SelfMonitoring-Trace
Data type: IOptional: Yes
Call by Reference: No ( called with pass by value option)
EXPORTING Parameters details for GRMG_INTERPRET_JAVA_WSIL
FM_OUT_ERROR - General Flag
Data type: FLAGOptional: No
Call by Reference: No ( called with pass by value option)
FM_OUT_SCEN_ERROR - GRMG: Type for type
Data type: GRMG_TYPE_TYPEOptional: No
Call by Reference: No ( called with pass by value option)
CHANGING Parameters details for GRMG_INTERPRET_JAVA_WSIL
FM_OUT_SERVICES_ITAB -
Data type: GRMG_WSIL_ST_TOptional: No
Call by Reference: No ( called with pass by value option)
FM_CHG_ERROR_ITAB - GRMG: Table type for error log
Data type: GRMG_ERROR_ITABOptional: No
Call by Reference: No ( called with pass by value option)
Copy and paste ABAP code example for GRMG_INTERPRET_JAVA_WSIL 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_fm_out_error | TYPE FLAG, " | |||
| lv_java_wsil_string | TYPE STRING, " | |||
| lv_fm_out_services_itab | TYPE GRMG_WSIL_ST_T, " | |||
| lv_system_sid | TYPE SYSYSID, " | |||
| lv_fm_chg_error_itab | TYPE GRMG_ERROR_ITAB, " | |||
| lv_fm_out_scen_error | TYPE GRMG_TYPE_TYPE, " | |||
| lv_fm_trace | TYPE I. " |
|   CALL FUNCTION 'GRMG_INTERPRET_JAVA_WSIL' "GRMG: Interprete the response of request or message |
| EXPORTING | ||
| JAVA_WSIL_STRING | = lv_java_wsil_string | |
| SYSTEM_SID | = lv_system_sid | |
| FM_TRACE | = lv_fm_trace | |
| IMPORTING | ||
| FM_OUT_ERROR | = lv_fm_out_error | |
| FM_OUT_SCEN_ERROR | = lv_fm_out_scen_error | |
| CHANGING | ||
| FM_OUT_SERVICES_ITAB | = lv_fm_out_services_itab | |
| FM_CHG_ERROR_ITAB | = lv_fm_chg_error_itab | |
| . " GRMG_INTERPRET_JAVA_WSIL | ||
ABAP code using 7.40 inline data declarations to call FM GRMG_INTERPRET_JAVA_WSIL
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