SAP GET_OS390_WLM_ALL Function Module for









GET_OS390_WLM_ALL is a standard get os390 wlm all SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used to perform a specific ABAP function and below is the pattern details, 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 get os390 wlm all FM, simply by entering the name GET_OS390_WLM_ALL into the relevant SAP transaction such as SE37 or SE38.

Function Group: SMON
Program Name: SAPLSMON
Main Program: SAPLSMON
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Remote-Enabled
Update:



Function GET_OS390_WLM_ALL 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 'GET_OS390_WLM_ALL'"
EXPORTING
* LOCAL_REMOTE = 'LOCAL' "
* LOGICAL_DESTINATION = "
* SYSTEM_ID = 0 "

IMPORTING
F_POL_ALL_READ = "
DETAILSCOLL = "
DETAILSREQI = "
DETAILSMODE = "
LASTCOLLWRT = "
LASTCOLLINT = "
NORMCOLLINT = "
F_MAP_ALL_READ = "
F_ENC_ALL_READ = "
F_SCL_ALL_READ = "
F_SCP_ALL_READ = "
F_RTD_ALL_READ = "
ACTIVEFLAG = "
INTERVAL = "
OP_SYSTEM = "

TABLES
TF_POL_ALL = "
TF_MAP_ALL = "
TF_ENC_ALL = "
TF_SCL_ALL = "
TF_SCP_ALL = "
TF_RTD_ALL = "

EXCEPTIONS
INTERNAL_ERROR_ADRESS_FAILED = 1 COMMUNICATION_FAILURE = 10 INTERNAL_ERROR_DIFFERENT_FIELD = 2 INTERNAL_ERROR_NO_NEW_LINE = 3 COLLECTOR_NOT_RUNNING = 4 SHARED_MEMORY_NOT_AVAILABLE = 5 COLLECTOR_BUSY = 6 VERSION_CONFLICT = 7 NO_NETWORK_COLLECTOR_RUNNING = 8 SYSTEM_FAILURE = 9
.



IMPORTING Parameters details for GET_OS390_WLM_ALL

LOCAL_REMOTE -

Data type: DEF_PAR_FU-LOC_REMOTE
Default: 'LOCAL'
Optional: Yes
Call by Reference: No ( called with pass by value option)

LOGICAL_DESTINATION -

Data type: RFCDES-RFCDEST
Optional: Yes
Call by Reference: No ( called with pass by value option)

SYSTEM_ID -

Data type: DEF_PAR_FU-RFC_DATA_H
Optional: Yes
Call by Reference: No ( called with pass by value option)

EXPORTING Parameters details for GET_OS390_WLM_ALL

F_POL_ALL_READ -

Data type: DEF_PAR_FU-NO_YES
Optional: No
Call by Reference: No ( called with pass by value option)

DETAILSCOLL -

Data type: DEF_PAR_FU-DETAILSCOL
Optional: No
Call by Reference: No ( called with pass by value option)

DETAILSREQI -

Data type: DEF_PAR_FU-DETAILSREQ
Optional: No
Call by Reference: No ( called with pass by value option)

DETAILSMODE -

Data type: DEF_PAR_FU-DETAILSMOD
Optional: No
Call by Reference: No ( called with pass by value option)

LASTCOLLWRT -

Data type: DEF_PAR_FU-LASTCOLLWR
Optional: No
Call by Reference: No ( called with pass by value option)

LASTCOLLINT -

Data type: DEF_PAR_FU-LASTCOLLIN
Optional: No
Call by Reference: No ( called with pass by value option)

NORMCOLLINT -

Data type: DEF_PAR_FU-NORMCOLLIN
Optional: No
Call by Reference: No ( called with pass by value option)

F_MAP_ALL_READ -

Data type: DEF_PAR_FU-NO_YES
Optional: No
Call by Reference: No ( called with pass by value option)

F_ENC_ALL_READ -

Data type: DEF_PAR_FU-NO_YES
Optional: No
Call by Reference: No ( called with pass by value option)

F_SCL_ALL_READ -

Data type: DEF_PAR_FU-NO_YES
Optional: No
Call by Reference: No ( called with pass by value option)

F_SCP_ALL_READ -

Data type: DEF_PAR_FU-NO_YES
Optional: No
Call by Reference: No ( called with pass by value option)

F_RTD_ALL_READ -

Data type: DEF_PAR_FU-NO_YES
Optional: No
Call by Reference: No ( called with pass by value option)

ACTIVEFLAG -

Data type: DEF_PAR_FU-ACTIVEFLAG
Optional: No
Call by Reference: No ( called with pass by value option)

INTERVAL -

Data type: DEF_PAR_FU-INTERVAL
Optional: No
Call by Reference: No ( called with pass by value option)

OP_SYSTEM -

Data type: DEF_PAR_FU-OPSYSTEM
Optional: No
Call by Reference: No ( called with pass by value option)

TABLES Parameters details for GET_OS390_WLM_ALL

TF_POL_ALL -

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

TF_MAP_ALL -

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

TF_ENC_ALL -

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

TF_SCL_ALL -

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

TF_SCP_ALL -

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

TF_RTD_ALL -

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

EXCEPTIONS details

INTERNAL_ERROR_ADRESS_FAILED -

Data type:
Optional: No
Call by Reference: Yes

COMMUNICATION_FAILURE -

Data type:
Optional: No
Call by Reference: Yes

INTERNAL_ERROR_DIFFERENT_FIELD -

Data type:
Optional: No
Call by Reference: Yes

INTERNAL_ERROR_NO_NEW_LINE -

Data type:
Optional: No
Call by Reference: Yes

COLLECTOR_NOT_RUNNING -

Data type:
Optional: No
Call by Reference: Yes

SHARED_MEMORY_NOT_AVAILABLE -

Data type:
Optional: No
Call by Reference: Yes

COLLECTOR_BUSY -

Data type:
Optional: No
Call by Reference: Yes

VERSION_CONFLICT -

Data type:
Optional: No
Call by Reference: Yes

NO_NETWORK_COLLECTOR_RUNNING -

Data type:
Optional: No
Call by Reference: Yes

SYSTEM_FAILURE -

Data type:
Optional: No
Call by Reference: Yes

Copy and paste ABAP code example for GET_OS390_WLM_ALL 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:
lt_tf_pol_all  TYPE STANDARD TABLE OF OS390_POL, "   
lv_local_remote  TYPE DEF_PAR_FU-LOC_REMOTE, "   'LOCAL'
lv_f_pol_all_read  TYPE DEF_PAR_FU-NO_YES, "   
lv_internal_error_adress_failed  TYPE DEF_PAR_FU, "   
lv_detailscoll  TYPE DEF_PAR_FU-DETAILSCOL, "   
lv_communication_failure  TYPE DEF_PAR_FU, "   
lv_detailsreqi  TYPE DEF_PAR_FU-DETAILSREQ, "   
lv_detailsmode  TYPE DEF_PAR_FU-DETAILSMOD, "   
lv_lastcollwrt  TYPE DEF_PAR_FU-LASTCOLLWR, "   
lv_lastcollint  TYPE DEF_PAR_FU-LASTCOLLIN, "   
lv_normcollint  TYPE DEF_PAR_FU-NORMCOLLIN, "   
lt_tf_map_all  TYPE STANDARD TABLE OF OS390_MAP, "   
lv_f_map_all_read  TYPE DEF_PAR_FU-NO_YES, "   
lv_logical_destination  TYPE RFCDES-RFCDEST, "   
lv_internal_error_different_field  TYPE RFCDES, "   
lv_system_id  TYPE DEF_PAR_FU-RFC_DATA_H, "   0
lt_tf_enc_all  TYPE STANDARD TABLE OF OS390_ENC, "   
lv_f_enc_all_read  TYPE DEF_PAR_FU-NO_YES, "   
lv_internal_error_no_new_line  TYPE DEF_PAR_FU, "   
lt_tf_scl_all  TYPE STANDARD TABLE OF OS390_SCL, "   
lv_f_scl_all_read  TYPE DEF_PAR_FU-NO_YES, "   
lv_collector_not_running  TYPE DEF_PAR_FU, "   
lt_tf_scp_all  TYPE STANDARD TABLE OF OS390_SCP, "   
lv_f_scp_all_read  TYPE DEF_PAR_FU-NO_YES, "   
lv_shared_memory_not_available  TYPE DEF_PAR_FU, "   
lt_tf_rtd_all  TYPE STANDARD TABLE OF OS390_RTD, "   
lv_collector_busy  TYPE OS390_RTD, "   
lv_f_rtd_all_read  TYPE DEF_PAR_FU-NO_YES, "   
lv_activeflag  TYPE DEF_PAR_FU-ACTIVEFLAG, "   
lv_version_conflict  TYPE DEF_PAR_FU, "   
lv_interval  TYPE DEF_PAR_FU-INTERVAL, "   
lv_no_network_collector_running  TYPE DEF_PAR_FU, "   
lv_op_system  TYPE DEF_PAR_FU-OPSYSTEM, "   
lv_system_failure  TYPE DEF_PAR_FU. "   

  CALL FUNCTION 'GET_OS390_WLM_ALL'  "
    EXPORTING
         LOCAL_REMOTE = lv_local_remote
         LOGICAL_DESTINATION = lv_logical_destination
         SYSTEM_ID = lv_system_id
    IMPORTING
         F_POL_ALL_READ = lv_f_pol_all_read
         DETAILSCOLL = lv_detailscoll
         DETAILSREQI = lv_detailsreqi
         DETAILSMODE = lv_detailsmode
         LASTCOLLWRT = lv_lastcollwrt
         LASTCOLLINT = lv_lastcollint
         NORMCOLLINT = lv_normcollint
         F_MAP_ALL_READ = lv_f_map_all_read
         F_ENC_ALL_READ = lv_f_enc_all_read
         F_SCL_ALL_READ = lv_f_scl_all_read
         F_SCP_ALL_READ = lv_f_scp_all_read
         F_RTD_ALL_READ = lv_f_rtd_all_read
         ACTIVEFLAG = lv_activeflag
         INTERVAL = lv_interval
         OP_SYSTEM = lv_op_system
    TABLES
         TF_POL_ALL = lt_tf_pol_all
         TF_MAP_ALL = lt_tf_map_all
         TF_ENC_ALL = lt_tf_enc_all
         TF_SCL_ALL = lt_tf_scl_all
         TF_SCP_ALL = lt_tf_scp_all
         TF_RTD_ALL = lt_tf_rtd_all
    EXCEPTIONS
        INTERNAL_ERROR_ADRESS_FAILED = 1
        COMMUNICATION_FAILURE = 10
        INTERNAL_ERROR_DIFFERENT_FIELD = 2
        INTERNAL_ERROR_NO_NEW_LINE = 3
        COLLECTOR_NOT_RUNNING = 4
        SHARED_MEMORY_NOT_AVAILABLE = 5
        COLLECTOR_BUSY = 6
        VERSION_CONFLICT = 7
        NO_NETWORK_COLLECTOR_RUNNING = 8
        SYSTEM_FAILURE = 9
. " GET_OS390_WLM_ALL




ABAP code using 7.40 inline data declarations to call FM GET_OS390_WLM_ALL

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.

 
"SELECT single LOC_REMOTE FROM DEF_PAR_FU INTO @DATA(ld_local_remote).
DATA(ld_local_remote) = 'LOCAL'.
 
"SELECT single NO_YES FROM DEF_PAR_FU INTO @DATA(ld_f_pol_all_read).
 
 
"SELECT single DETAILSCOL FROM DEF_PAR_FU INTO @DATA(ld_detailscoll).
 
 
"SELECT single DETAILSREQ FROM DEF_PAR_FU INTO @DATA(ld_detailsreqi).
 
"SELECT single DETAILSMOD FROM DEF_PAR_FU INTO @DATA(ld_detailsmode).
 
"SELECT single LASTCOLLWR FROM DEF_PAR_FU INTO @DATA(ld_lastcollwrt).
 
"SELECT single LASTCOLLIN FROM DEF_PAR_FU INTO @DATA(ld_lastcollint).
 
"SELECT single NORMCOLLIN FROM DEF_PAR_FU INTO @DATA(ld_normcollint).
 
 
"SELECT single NO_YES FROM DEF_PAR_FU INTO @DATA(ld_f_map_all_read).
 
"SELECT single RFCDEST FROM RFCDES INTO @DATA(ld_logical_destination).
 
 
"SELECT single RFC_DATA_H FROM DEF_PAR_FU INTO @DATA(ld_system_id).
 
 
"SELECT single NO_YES FROM DEF_PAR_FU INTO @DATA(ld_f_enc_all_read).
 
 
 
"SELECT single NO_YES FROM DEF_PAR_FU INTO @DATA(ld_f_scl_all_read).
 
 
 
"SELECT single NO_YES FROM DEF_PAR_FU INTO @DATA(ld_f_scp_all_read).
 
 
 
 
"SELECT single NO_YES FROM DEF_PAR_FU INTO @DATA(ld_f_rtd_all_read).
 
"SELECT single ACTIVEFLAG FROM DEF_PAR_FU INTO @DATA(ld_activeflag).
 
 
"SELECT single INTERVAL FROM DEF_PAR_FU INTO @DATA(ld_interval).
 
 
"SELECT single OPSYSTEM FROM DEF_PAR_FU INTO @DATA(ld_op_system).
 
 


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!