SAP GRMG_SAVE_JAVA_WSIL_GRMG_LITE Function Module for GRMG-Lite-Szenario für ABAP WSIL WS ablegen









GRMG_SAVE_JAVA_WSIL_GRMG_LITE is a standard grmg save java wsil grmg lite 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-Lite-Szenario für ABAP WSIL WS ablegen 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 save java wsil grmg lite FM, simply by entering the name GRMG_SAVE_JAVA_WSIL_GRMG_LITE 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): Normal Function Module
Update:



Function GRMG_SAVE_JAVA_WSIL_GRMG_LITE 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_SAVE_JAVA_WSIL_GRMG_LITE'"GRMG-Lite-Szenario für ABAP WSIL WS ablegen
EXPORTING
* DIALOG_MODE = 'X' "'X' - wird interaktiv aufgerufen
* LOGON_CLIENT = "Client ID of Current User
* LOGON_USER = "
* LOGON_PASSWORD = "
* AVAIL_CODES = "
* GET_RUN_TIME = "General Flag
* USE_PROXY_AUTHENTICATION = "General Flag
* PROXY_HOST = "
* PROXY_SERVICE = "
* PROXY_LOGON_CLIENT = "Client ID of Current User
* PROXY_LOGON_USER = "
* PROXY_LOGON_PASSWORD = "
* SSL_CLIENT_ID = "SSL Client Identity
* USE_BASIC_AUTHENTICATION = "General Flag

CHANGING
WSIL_SERVICES_TO_MONITOR = "
.



IMPORTING Parameters details for GRMG_SAVE_JAVA_WSIL_GRMG_LITE

DIALOG_MODE - 'X' - wird interaktiv aufgerufen

Data type: FLAG
Default: 'X'
Optional: Yes
Call by Reference: Yes

LOGON_CLIENT - Client ID of Current User

Data type: SYMANDT
Optional: Yes
Call by Reference: Yes

LOGON_USER -

Data type: STRING
Optional: Yes
Call by Reference: Yes

LOGON_PASSWORD -

Data type: STRING
Optional: Yes
Call by Reference: Yes

AVAIL_CODES -

Data type: STRING
Optional: Yes
Call by Reference: Yes

GET_RUN_TIME - General Flag

Data type: FLAG
Optional: Yes
Call by Reference: Yes

USE_PROXY_AUTHENTICATION - General Flag

Data type: FLAG
Optional: Yes
Call by Reference: Yes

PROXY_HOST -

Data type: STRING
Optional: Yes
Call by Reference: Yes

PROXY_SERVICE -

Data type: STRING
Optional: Yes
Call by Reference: Yes

PROXY_LOGON_CLIENT - Client ID of Current User

Data type: SYMANDT
Optional: Yes
Call by Reference: Yes

PROXY_LOGON_USER -

Data type: STRING
Optional: Yes
Call by Reference: Yes

PROXY_LOGON_PASSWORD -

Data type: STRING
Optional: Yes
Call by Reference: Yes

SSL_CLIENT_ID - SSL Client Identity

Data type: SSFAPPLSSL
Optional: Yes
Call by Reference: Yes

USE_BASIC_AUTHENTICATION - General Flag

Data type: FLAG
Optional: Yes
Call by Reference: Yes

CHANGING Parameters details for GRMG_SAVE_JAVA_WSIL_GRMG_LITE

WSIL_SERVICES_TO_MONITOR -

Data type: GRMG_WSIL_ST_T
Optional: No
Call by Reference: Yes

Copy and paste ABAP code example for GRMG_SAVE_JAVA_WSIL_GRMG_LITE 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_dialog_mode  TYPE FLAG, "   'X'
lv_wsil_services_to_monitor  TYPE GRMG_WSIL_ST_T, "   
lv_logon_client  TYPE SYMANDT, "   
lv_logon_user  TYPE STRING, "   
lv_logon_password  TYPE STRING, "   
lv_avail_codes  TYPE STRING, "   
lv_get_run_time  TYPE FLAG, "   
lv_use_proxy_authentication  TYPE FLAG, "   
lv_proxy_host  TYPE STRING, "   
lv_proxy_service  TYPE STRING, "   
lv_proxy_logon_client  TYPE SYMANDT, "   
lv_proxy_logon_user  TYPE STRING, "   
lv_proxy_logon_password  TYPE STRING, "   
lv_ssl_client_id  TYPE SSFAPPLSSL, "   
lv_use_basic_authentication  TYPE FLAG. "   

  CALL FUNCTION 'GRMG_SAVE_JAVA_WSIL_GRMG_LITE'  "GRMG-Lite-Szenario für ABAP WSIL WS ablegen
    EXPORTING
         DIALOG_MODE = lv_dialog_mode
         LOGON_CLIENT = lv_logon_client
         LOGON_USER = lv_logon_user
         LOGON_PASSWORD = lv_logon_password
         AVAIL_CODES = lv_avail_codes
         GET_RUN_TIME = lv_get_run_time
         USE_PROXY_AUTHENTICATION = lv_use_proxy_authentication
         PROXY_HOST = lv_proxy_host
         PROXY_SERVICE = lv_proxy_service
         PROXY_LOGON_CLIENT = lv_proxy_logon_client
         PROXY_LOGON_USER = lv_proxy_logon_user
         PROXY_LOGON_PASSWORD = lv_proxy_logon_password
         SSL_CLIENT_ID = lv_ssl_client_id
         USE_BASIC_AUTHENTICATION = lv_use_basic_authentication
    CHANGING
         WSIL_SERVICES_TO_MONITOR = lv_wsil_services_to_monitor
. " GRMG_SAVE_JAVA_WSIL_GRMG_LITE




ABAP code using 7.40 inline data declarations to call FM GRMG_SAVE_JAVA_WSIL_GRMG_LITE

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.

DATA(ld_dialog_mode) = 'X'.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 


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!