SAP RSSEARCHLOGS_DEVTRACE Function Module for Upload developers trace files from file system
RSSEARCHLOGS_DEVTRACE is a standard rssearchlogs devtrace SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Upload developers trace files from file system 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 rssearchlogs devtrace FM, simply by entering the name RSSEARCHLOGS_DEVTRACE into the relevant SAP transaction such as SE37 or SE38.
Function Group: RSSEARCHLOGS
Program Name: SAPLRSSEARCHLOGS
Main Program: SAPLRSSEARCHLOGS
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function RSSEARCHLOGS_DEVTRACE 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 'RSSEARCHLOGS_DEVTRACE'"Upload developers trace files from file system.
EXPORTING
I_DATE_FROM = "
I_DATE_TO = "
* I_TIME_FROM = '000000' "
* I_TIME_TO = '235959' "
* I_PATH_PREFIX = ' ' "char120
* I_S_SELE = "
* I_T_SERVER = "
* I_T_SEARCH = "
IMPORTING
E_T_DEV_FOUND = "
IMPORTING Parameters details for RSSEARCHLOGS_DEVTRACE
I_DATE_FROM -
Data type: DOptional: No
Call by Reference: Yes
I_DATE_TO -
Data type: DOptional: No
Call by Reference: Yes
I_TIME_FROM -
Data type: TDefault: '000000'
Optional: Yes
Call by Reference: Yes
I_TIME_TO -
Data type: TDefault: '235959'
Optional: Yes
Call by Reference: Yes
I_PATH_PREFIX - char120
Data type: CHAR120Default: SPACE
Optional: Yes
Call by Reference: Yes
I_S_SELE -
Data type: RSSRC_S_DEVSELOptional: Yes
Call by Reference: Yes
I_T_SERVER -
Data type: RSSRC_T_SERVEROptional: Yes
Call by Reference: Yes
I_T_SEARCH -
Data type: RSSRC_T_FIELDVALOptional: Yes
Call by Reference: Yes
EXPORTING Parameters details for RSSEARCHLOGS_DEVTRACE
E_T_DEV_FOUND -
Data type: RSSRC_T_DEV_FOUNDOptional: No
Call by Reference: Yes
Copy and paste ABAP code example for RSSEARCHLOGS_DEVTRACE 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_i_date_from | TYPE D, " | |||
| lv_e_t_dev_found | TYPE RSSRC_T_DEV_FOUND, " | |||
| lv_i_date_to | TYPE D, " | |||
| lv_i_time_from | TYPE T, " '000000' | |||
| lv_i_time_to | TYPE T, " '235959' | |||
| lv_i_path_prefix | TYPE CHAR120, " SPACE | |||
| lv_i_s_sele | TYPE RSSRC_S_DEVSEL, " | |||
| lv_i_t_server | TYPE RSSRC_T_SERVER, " | |||
| lv_i_t_search | TYPE RSSRC_T_FIELDVAL. " |
|   CALL FUNCTION 'RSSEARCHLOGS_DEVTRACE' "Upload developers trace files from file system |
| EXPORTING | ||
| I_DATE_FROM | = lv_i_date_from | |
| I_DATE_TO | = lv_i_date_to | |
| I_TIME_FROM | = lv_i_time_from | |
| I_TIME_TO | = lv_i_time_to | |
| I_PATH_PREFIX | = lv_i_path_prefix | |
| I_S_SELE | = lv_i_s_sele | |
| I_T_SERVER | = lv_i_t_server | |
| I_T_SEARCH | = lv_i_t_search | |
| IMPORTING | ||
| E_T_DEV_FOUND | = lv_e_t_dev_found | |
| . " RSSEARCHLOGS_DEVTRACE | ||
ABAP code using 7.40 inline data declarations to call FM RSSEARCHLOGS_DEVTRACE
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_i_time_from) | = '000000'. | |||
| DATA(ld_i_time_to) | = '235959'. | |||
| DATA(ld_i_path_prefix) | = ' '. | |||
Search for further information about these or an SAP related objects