SAP RSECLOPD_LOG_LOAD_QUERY Function Module for Service module for Virtual InfoProvider
RSECLOPD_LOG_LOAD_QUERY is a standard rseclopd log load query SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Service module for Virtual InfoProvider 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 rseclopd log load query FM, simply by entering the name RSECLOPD_LOG_LOAD_QUERY into the relevant SAP transaction such as SE37 or SE38.
Function Group: RSECLOPD_LOG
Program Name: SAPLRSECLOPD_LOG
Main Program: SAPLRSECLOPD_LOG
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function RSECLOPD_LOG_LOAD_QUERY 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 'RSECLOPD_LOG_LOAD_QUERY'"Service module for Virtual InfoProvider.
EXPORTING
I_INFOPROV = "InfoProvider
I_KEYDATE = "Date with which texts, attributes and hierarchies are read
I_TH_SFC = "Table of Required Characteristics
I_TH_SFK = "BW Data Manager: List of Key Figures
I_T_RANGE = "BW Data Manager: Range List
I_TX_RANGETAB = "BW Data Manager: Table from Range List
I_FIRST_CALL = "Boolean
I_PACKAGESIZE = "
IMPORTING
E_T_DATA = "Results Table
E_END_OF_DATA = "Last data packet
E_T_MSG = "BW: Table with Messages (Application Log)
IMPORTING Parameters details for RSECLOPD_LOG_LOAD_QUERY
I_INFOPROV - InfoProvider
Data type: RSINFOPROVOptional: No
Call by Reference: Yes
I_KEYDATE - Date with which texts, attributes and hierarchies are read
Data type: RRSRDATEOptional: No
Call by Reference: Yes
I_TH_SFC - Table of Required Characteristics
Data type: RSDRI_TH_SFCOptional: No
Call by Reference: Yes
I_TH_SFK - BW Data Manager: List of Key Figures
Data type: RSDRI_TH_SFKOptional: No
Call by Reference: Yes
I_T_RANGE - BW Data Manager: Range List
Data type: RSDRI_T_RANGEOptional: No
Call by Reference: Yes
I_TX_RANGETAB - BW Data Manager: Table from Range List
Data type: RSDRI_TX_RANGETABOptional: No
Call by Reference: Yes
I_FIRST_CALL - Boolean
Data type: RS_BOOLOptional: No
Call by Reference: Yes
I_PACKAGESIZE -
Data type: IOptional: No
Call by Reference: Yes
EXPORTING Parameters details for RSECLOPD_LOG_LOAD_QUERY
E_T_DATA - Results Table
Data type: STANDARD TABLEOptional: No
Call by Reference: Yes
E_END_OF_DATA - Last data packet
Data type: RS_BOOLOptional: No
Call by Reference: Yes
E_T_MSG - BW: Table with Messages (Application Log)
Data type: RS_T_MSGOptional: No
Call by Reference: Yes
Copy and paste ABAP code example for RSECLOPD_LOG_LOAD_QUERY 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_e_t_data | TYPE STANDARD TABLE, " | |||
| lv_i_infoprov | TYPE RSINFOPROV, " | |||
| lv_i_keydate | TYPE RRSRDATE, " | |||
| lv_e_end_of_data | TYPE RS_BOOL, " | |||
| lv_e_t_msg | TYPE RS_T_MSG, " | |||
| lv_i_th_sfc | TYPE RSDRI_TH_SFC, " | |||
| lv_i_th_sfk | TYPE RSDRI_TH_SFK, " | |||
| lv_i_t_range | TYPE RSDRI_T_RANGE, " | |||
| lv_i_tx_rangetab | TYPE RSDRI_TX_RANGETAB, " | |||
| lv_i_first_call | TYPE RS_BOOL, " | |||
| lv_i_packagesize | TYPE I. " |
|   CALL FUNCTION 'RSECLOPD_LOG_LOAD_QUERY' "Service module for Virtual InfoProvider |
| EXPORTING | ||
| I_INFOPROV | = lv_i_infoprov | |
| I_KEYDATE | = lv_i_keydate | |
| I_TH_SFC | = lv_i_th_sfc | |
| I_TH_SFK | = lv_i_th_sfk | |
| I_T_RANGE | = lv_i_t_range | |
| I_TX_RANGETAB | = lv_i_tx_rangetab | |
| I_FIRST_CALL | = lv_i_first_call | |
| I_PACKAGESIZE | = lv_i_packagesize | |
| IMPORTING | ||
| E_T_DATA | = lv_e_t_data | |
| E_END_OF_DATA | = lv_e_end_of_data | |
| E_T_MSG | = lv_e_t_msg | |
| . " RSECLOPD_LOG_LOAD_QUERY | ||
ABAP code using 7.40 inline data declarations to call FM RSECLOPD_LOG_LOAD_QUERY
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