SAP BDL_WORKLOAD_GET_SUMMARY Function Module for SAP Workload: Workload Statistik: Rückgabe der tasktypabh.
BDL_WORKLOAD_GET_SUMMARY is a standard bdl workload get summary SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for SAP Workload: Workload Statistik: Rückgabe der tasktypabh. 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 bdl workload get summary FM, simply by entering the name BDL_WORKLOAD_GET_SUMMARY into the relevant SAP transaction such as SE37 or SE38.
Function Group: BDL9
Program Name: SAPLBDL9
Main Program: SAPLBDL9
Appliation area: S
Release date: N/A
Mode(Normal, Remote etc): Remote-Enabled
Update:

Function BDL_WORKLOAD_GET_SUMMARY 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 'BDL_WORKLOAD_GET_SUMMARY'"SAP Workload: Workload Statistik: Rückgabe der tasktypabh..
EXPORTING
* PERIODTYPE = 'D' "
* HOSTID = SY-HOST "
* STARTDATE = "
* DAYS = 5 "
* INSTANCE = ' ' "
TABLES
* SUMMARY = "
EXCEPTIONS
UNKNOWN_PERIODTYPE = 1 WRONG_PARAMETERS = 2 X_ERROR = 3 NO_AUTHORIZATION = 4
IMPORTING Parameters details for BDL_WORKLOAD_GET_SUMMARY
PERIODTYPE -
Data type: SAPWLACCTP-PERIODTYPEDefault: 'D'
Optional: Yes
Call by Reference: No ( called with pass by value option)
HOSTID -
Data type: SY-HOSTDefault: SY-HOST
Optional: Yes
Call by Reference: No ( called with pass by value option)
STARTDATE -
Data type: SAPWLACCTP-STARTDATEOptional: Yes
Call by Reference: No ( called with pass by value option)
DAYS -
Data type: SY-TABIXDefault: 5
Optional: Yes
Call by Reference: No ( called with pass by value option)
INSTANCE -
Data type: SAPWLSERV-NAMEDefault: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)
TABLES Parameters details for BDL_WORKLOAD_GET_SUMMARY
SUMMARY -
Data type: BDLWLSUMRYOptional: Yes
Call by Reference: No ( called with pass by value option)
EXCEPTIONS details
UNKNOWN_PERIODTYPE -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
WRONG_PARAMETERS -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
X_ERROR -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
NO_AUTHORIZATION -
Data type:Optional: No
Call by Reference: Yes
Copy and paste ABAP code example for BDL_WORKLOAD_GET_SUMMARY 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_summary | TYPE STANDARD TABLE OF BDLWLSUMRY, " | |||
| lv_periodtype | TYPE SAPWLACCTP-PERIODTYPE, " 'D' | |||
| lv_unknown_periodtype | TYPE SAPWLACCTP, " | |||
| lv_hostid | TYPE SY-HOST, " SY-HOST | |||
| lv_wrong_parameters | TYPE SY, " | |||
| lv_x_error | TYPE SY, " | |||
| lv_startdate | TYPE SAPWLACCTP-STARTDATE, " | |||
| lv_days | TYPE SY-TABIX, " 5 | |||
| lv_no_authorization | TYPE SY, " | |||
| lv_instance | TYPE SAPWLSERV-NAME. " SPACE |
|   CALL FUNCTION 'BDL_WORKLOAD_GET_SUMMARY' "SAP Workload: Workload Statistik: Rückgabe der tasktypabh. |
| EXPORTING | ||
| PERIODTYPE | = lv_periodtype | |
| HOSTID | = lv_hostid | |
| STARTDATE | = lv_startdate | |
| DAYS | = lv_days | |
| INSTANCE | = lv_instance | |
| TABLES | ||
| SUMMARY | = lt_summary | |
| EXCEPTIONS | ||
| UNKNOWN_PERIODTYPE = 1 | ||
| WRONG_PARAMETERS = 2 | ||
| X_ERROR = 3 | ||
| NO_AUTHORIZATION = 4 | ||
| . " BDL_WORKLOAD_GET_SUMMARY | ||
ABAP code using 7.40 inline data declarations to call FM BDL_WORKLOAD_GET_SUMMARY
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 PERIODTYPE FROM SAPWLACCTP INTO @DATA(ld_periodtype). | ||||
| DATA(ld_periodtype) | = 'D'. | |||
| "SELECT single HOST FROM SY INTO @DATA(ld_hostid). | ||||
| DATA(ld_hostid) | = SY-HOST. | |||
| "SELECT single STARTDATE FROM SAPWLACCTP INTO @DATA(ld_startdate). | ||||
| "SELECT single TABIX FROM SY INTO @DATA(ld_days). | ||||
| DATA(ld_days) | = 5. | |||
| "SELECT single NAME FROM SAPWLSERV INTO @DATA(ld_instance). | ||||
| DATA(ld_instance) | = ' '. | |||
Search for further information about these or an SAP related objects