SAP SAPWLN3_GET_AGGREGATE_CONTENT Function Module for









SAPWLN3_GET_AGGREGATE_CONTENT is a standard sapwln3 get aggregate content 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 sapwln3 get aggregate content FM, simply by entering the name SAPWLN3_GET_AGGREGATE_CONTENT into the relevant SAP transaction such as SE37 or SE38.

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



Function SAPWLN3_GET_AGGREGATE_CONTENT 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 'SAPWLN3_GET_AGGREGATE_CONTENT'"
EXPORTING
SELECTION_KEY = "
* GET_STATISTIC_AVAIL = ' ' "
* GET_MULTISYS_INFO = ' ' "
* MONITORING_SYSTEM = ' ' "
* GET_ACTIONS_STAT = ' ' "
* GET_SYSTEMLOAD = ' ' "
* GET_CALLSUBREC_STAT = ' ' "
* GET_EXT_SYSTEM_LOAD = ' ' "
* GET_RESPTIME_CATEGORY = ' ' "
* GET_HITLIST_RESPTIME = ' ' "
* GET_HITLIST_WAITTIME = ' ' "

IMPORTING
ACTIONS_STATISTIC = "
MULTISYS_SYSTEM_LIST = "
USERS_ARE_ANONYMOUS = "
SYSTEMLOAD_SUMMARY = "
CALL_SUBRECORD_STAT_T1 = "
EXTERNAL_SYSTEM_LOAD = "
RESPTIME_CATEGORYS = "
HITLIST_RESPTIME = "
HITLIST_WAITTIME = "
STATISTIC_AVAILABILITY = "
COMPONENTS_AVAILABILITY = "

EXCEPTIONS
NO_DATA_AVAILABLE = 1 INTERNAL_ERROR = 2 RFC_PROBLEMS = 3 FUNCMODULE_NOT_FOUND_IN_MONSYS = 4
.



IMPORTING Parameters details for SAPWLN3_GET_AGGREGATE_CONTENT

SELECTION_KEY -

Data type: SWLN3WLDBI
Optional: No
Call by Reference: No ( called with pass by value option)

GET_STATISTIC_AVAIL -

Data type: SAPWLPFLAG
Default: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)

GET_MULTISYS_INFO -

Data type: SAPWLPFLAG
Default: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)

MONITORING_SYSTEM -

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

GET_ACTIONS_STAT -

Data type: SAPWLPFLAG
Default: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)

GET_SYSTEMLOAD -

Data type: SAPWLPFLAG
Default: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)

GET_CALLSUBREC_STAT -

Data type: SAPWLPFLAG
Default: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)

GET_EXT_SYSTEM_LOAD -

Data type: SAPWLPFLAG
Default: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)

GET_RESPTIME_CATEGORY -

Data type: SAPWLPFLAG
Default: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)

GET_HITLIST_RESPTIME -

Data type: SAPWLPFLAG
Default: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)

GET_HITLIST_WAITTIME -

Data type: SAPWLPFLAG
Default: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)

EXPORTING Parameters details for SAPWLN3_GET_AGGREGATE_CONTENT

ACTIONS_STATISTIC -

Data type: SWLN3_AGGREGATES_ACTION_NOSORT
Optional: No
Call by Reference: No ( called with pass by value option)

MULTISYS_SYSTEM_LIST -

Data type: SWLN3_R3_SYSTEMS
Optional: No
Call by Reference: No ( called with pass by value option)

USERS_ARE_ANONYMOUS -

Data type: SAPWLPFLAG
Optional: No
Call by Reference: No ( called with pass by value option)

SYSTEMLOAD_SUMMARY -

Data type: SWLN3_AGGREGATES_SYSTEMLOAD
Optional: No
Call by Reference: No ( called with pass by value option)

CALL_SUBRECORD_STAT_T1 -

Data type: SWLN3_AGGREGATES_CALLTYPE1_NS
Optional: No
Call by Reference: No ( called with pass by value option)

EXTERNAL_SYSTEM_LOAD -

Data type: SWLN3_AGGREGATES_EXT_SYST_NS
Optional: No
Call by Reference: No ( called with pass by value option)

RESPTIME_CATEGORYS -

Data type: SWLN3_AGGREGATES_RESPT_CATEG
Optional: No
Call by Reference: No ( called with pass by value option)

HITLIST_RESPTIME -

Data type: SWLN3_AGGREGATES_HITLIST_RESPT
Optional: No
Call by Reference: No ( called with pass by value option)

HITLIST_WAITTIME -

Data type: SWLN3_AGGREGATES_HITLIST_WAITT
Optional: No
Call by Reference: No ( called with pass by value option)

STATISTIC_AVAILABILITY -

Data type: SWLN3_AGGREGATES_STAT_AVAILAB
Optional: No
Call by Reference: No ( called with pass by value option)

COMPONENTS_AVAILABILITY -

Data type: SWLN3_AGGREGATES_COMPONENTS_AV
Optional: No
Call by Reference: No ( called with pass by value option)

EXCEPTIONS details

NO_DATA_AVAILABLE -

Data type:
Optional: No
Call by Reference: Yes

INTERNAL_ERROR -

Data type:
Optional: No
Call by Reference: Yes

RFC_PROBLEMS -

Data type:
Optional: No
Call by Reference: Yes

FUNCMODULE_NOT_FOUND_IN_MONSYS -

Data type:
Optional: No
Call by Reference: Yes

Copy and paste ABAP code example for SAPWLN3_GET_AGGREGATE_CONTENT 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_selection_key  TYPE SWLN3WLDBI, "   
lv_actions_statistic  TYPE SWLN3_AGGREGATES_ACTION_NOSORT, "   
lv_no_data_available  TYPE SWLN3_AGGREGATES_ACTION_NOSORT, "   
lv_get_statistic_avail  TYPE SAPWLPFLAG, "   SPACE
lv_multisys_system_list  TYPE SWLN3_R3_SYSTEMS, "   
lv_get_multisys_info  TYPE SAPWLPFLAG, "   SPACE
lv_users_are_anonymous  TYPE SAPWLPFLAG, "   
lv_internal_error  TYPE SAPWLPFLAG, "   
lv_monitoring_system  TYPE RFCDEST, "   SPACE
lv_systemload_summary  TYPE SWLN3_AGGREGATES_SYSTEMLOAD, "   
lv_rfc_problems  TYPE SWLN3_AGGREGATES_SYSTEMLOAD, "   
lv_get_actions_stat  TYPE SAPWLPFLAG, "   SPACE
lv_call_subrecord_stat_t1  TYPE SWLN3_AGGREGATES_CALLTYPE1_NS, "   
lv_get_systemload  TYPE SAPWLPFLAG, "   SPACE
lv_external_system_load  TYPE SWLN3_AGGREGATES_EXT_SYST_NS, "   
lv_funcmodule_not_found_in_monsys  TYPE SWLN3_AGGREGATES_EXT_SYST_NS, "   
lv_resptime_categorys  TYPE SWLN3_AGGREGATES_RESPT_CATEG, "   
lv_get_callsubrec_stat  TYPE SAPWLPFLAG, "   SPACE
lv_hitlist_resptime  TYPE SWLN3_AGGREGATES_HITLIST_RESPT, "   
lv_get_ext_system_load  TYPE SAPWLPFLAG, "   SPACE
lv_hitlist_waittime  TYPE SWLN3_AGGREGATES_HITLIST_WAITT, "   
lv_get_resptime_category  TYPE SAPWLPFLAG, "   SPACE
lv_get_hitlist_resptime  TYPE SAPWLPFLAG, "   SPACE
lv_statistic_availability  TYPE SWLN3_AGGREGATES_STAT_AVAILAB, "   
lv_get_hitlist_waittime  TYPE SAPWLPFLAG, "   SPACE
lv_components_availability  TYPE SWLN3_AGGREGATES_COMPONENTS_AV. "   

  CALL FUNCTION 'SAPWLN3_GET_AGGREGATE_CONTENT'  "
    EXPORTING
         SELECTION_KEY = lv_selection_key
         GET_STATISTIC_AVAIL = lv_get_statistic_avail
         GET_MULTISYS_INFO = lv_get_multisys_info
         MONITORING_SYSTEM = lv_monitoring_system
         GET_ACTIONS_STAT = lv_get_actions_stat
         GET_SYSTEMLOAD = lv_get_systemload
         GET_CALLSUBREC_STAT = lv_get_callsubrec_stat
         GET_EXT_SYSTEM_LOAD = lv_get_ext_system_load
         GET_RESPTIME_CATEGORY = lv_get_resptime_category
         GET_HITLIST_RESPTIME = lv_get_hitlist_resptime
         GET_HITLIST_WAITTIME = lv_get_hitlist_waittime
    IMPORTING
         ACTIONS_STATISTIC = lv_actions_statistic
         MULTISYS_SYSTEM_LIST = lv_multisys_system_list
         USERS_ARE_ANONYMOUS = lv_users_are_anonymous
         SYSTEMLOAD_SUMMARY = lv_systemload_summary
         CALL_SUBRECORD_STAT_T1 = lv_call_subrecord_stat_t1
         EXTERNAL_SYSTEM_LOAD = lv_external_system_load
         RESPTIME_CATEGORYS = lv_resptime_categorys
         HITLIST_RESPTIME = lv_hitlist_resptime
         HITLIST_WAITTIME = lv_hitlist_waittime
         STATISTIC_AVAILABILITY = lv_statistic_availability
         COMPONENTS_AVAILABILITY = lv_components_availability
    EXCEPTIONS
        NO_DATA_AVAILABLE = 1
        INTERNAL_ERROR = 2
        RFC_PROBLEMS = 3
        FUNCMODULE_NOT_FOUND_IN_MONSYS = 4
. " SAPWLN3_GET_AGGREGATE_CONTENT




ABAP code using 7.40 inline data declarations to call FM SAPWLN3_GET_AGGREGATE_CONTENT

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_get_statistic_avail) = ' '.
 
 
DATA(ld_get_multisys_info) = ' '.
 
 
 
DATA(ld_monitoring_system) = ' '.
 
 
 
DATA(ld_get_actions_stat) = ' '.
 
 
DATA(ld_get_systemload) = ' '.
 
 
 
 
DATA(ld_get_callsubrec_stat) = ' '.
 
 
DATA(ld_get_ext_system_load) = ' '.
 
 
DATA(ld_get_resptime_category) = ' '.
 
DATA(ld_get_hitlist_resptime) = ' '.
 
 
DATA(ld_get_hitlist_waittime) = ' '.
 
 


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!