SAP RS_HTTP_DEBUG_UPDATE Function Module for
RS_HTTP_DEBUG_UPDATE is a standard rs http debug update 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 rs http debug update FM, simply by entering the name RS_HTTP_DEBUG_UPDATE into the relevant SAP transaction such as SE37 or SE38.
Function Group: BREA
Program Name: SAPLBREA
Main Program: SAPLBREA
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function RS_HTTP_DEBUG_UPDATE 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 'RS_HTTP_DEBUG_UPDATE'".
EXPORTING
USER = "
* CURR_APP_SERV_ONLY = ' ' "
* GUI_IPADDRESS_FLAG = 'X' "
* ACTION = 'X' "
* SYSDEBUG = ' ' "
* TIMEOUT = '020000' "
* NO_MESSAGE = ' ' "
* AUTHORITY_CHECK = 'X' "
* USER_DEPEND = "
* TERMINAL_ID_FLAG = ' ' "
CHANGING
* INT_ICFATTRIB = "
EXCEPTIONS
INTERNAL_ERROR = 1
IMPORTING Parameters details for RS_HTTP_DEBUG_UPDATE
USER -
Data type: SY-UNAMEOptional: No
Call by Reference: No ( called with pass by value option)
CURR_APP_SERV_ONLY -
Data type: CHAR1Default: SPACE
Optional: No
Call by Reference: No ( called with pass by value option)
GUI_IPADDRESS_FLAG -
Data type: CHAR1Default: 'X'
Optional: No
Call by Reference: No ( called with pass by value option)
ACTION -
Data type: CHAR1Default: 'X'
Optional: No
Call by Reference: No ( called with pass by value option)
SYSDEBUG -
Data type: CHAR1Default: SPACE
Optional: No
Call by Reference: No ( called with pass by value option)
TIMEOUT -
Data type: SYUZEITDefault: '020000'
Optional: No
Call by Reference: No ( called with pass by value option)
NO_MESSAGE -
Data type: CHAR1Default: SPACE
Optional: No
Call by Reference: No ( called with pass by value option)
AUTHORITY_CHECK -
Data type: CHAR1Default: 'X'
Optional: No
Call by Reference: No ( called with pass by value option)
USER_DEPEND -
Data type: CHAR1Optional: Yes
Call by Reference: No ( called with pass by value option)
TERMINAL_ID_FLAG -
Data type: CHAR1Default: SPACE
Optional: No
Call by Reference: No ( called with pass by value option)
CHANGING Parameters details for RS_HTTP_DEBUG_UPDATE
INT_ICFATTRIB -
Data type: TTYP_ICFATTRIBOptional: Yes
Call by Reference: Yes
EXCEPTIONS details
INTERNAL_ERROR -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
Copy and paste ABAP code example for RS_HTTP_DEBUG_UPDATE 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_user | TYPE SY-UNAME, " | |||
| lv_int_icfattrib | TYPE TTYP_ICFATTRIB, " | |||
| lv_internal_error | TYPE TTYP_ICFATTRIB, " | |||
| lv_curr_app_serv_only | TYPE CHAR1, " SPACE | |||
| lv_gui_ipaddress_flag | TYPE CHAR1, " 'X' | |||
| lv_action | TYPE CHAR1, " 'X' | |||
| lv_sysdebug | TYPE CHAR1, " SPACE | |||
| lv_timeout | TYPE SYUZEIT, " '020000' | |||
| lv_no_message | TYPE CHAR1, " SPACE | |||
| lv_authority_check | TYPE CHAR1, " 'X' | |||
| lv_user_depend | TYPE CHAR1, " | |||
| lv_terminal_id_flag | TYPE CHAR1. " SPACE |
|   CALL FUNCTION 'RS_HTTP_DEBUG_UPDATE' " |
| EXPORTING | ||
| USER | = lv_user | |
| CURR_APP_SERV_ONLY | = lv_curr_app_serv_only | |
| GUI_IPADDRESS_FLAG | = lv_gui_ipaddress_flag | |
| ACTION | = lv_action | |
| SYSDEBUG | = lv_sysdebug | |
| TIMEOUT | = lv_timeout | |
| NO_MESSAGE | = lv_no_message | |
| AUTHORITY_CHECK | = lv_authority_check | |
| USER_DEPEND | = lv_user_depend | |
| TERMINAL_ID_FLAG | = lv_terminal_id_flag | |
| CHANGING | ||
| INT_ICFATTRIB | = lv_int_icfattrib | |
| EXCEPTIONS | ||
| INTERNAL_ERROR = 1 | ||
| . " RS_HTTP_DEBUG_UPDATE | ||
ABAP code using 7.40 inline data declarations to call FM RS_HTTP_DEBUG_UPDATE
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 UNAME FROM SY INTO @DATA(ld_user). | ||||
| DATA(ld_curr_app_serv_only) | = ' '. | |||
| DATA(ld_gui_ipaddress_flag) | = 'X'. | |||
| DATA(ld_action) | = 'X'. | |||
| DATA(ld_sysdebug) | = ' '. | |||
| DATA(ld_timeout) | = '020000'. | |||
| DATA(ld_no_message) | = ' '. | |||
| DATA(ld_authority_check) | = 'X'. | |||
| DATA(ld_terminal_id_flag) | = ' '. | |||
Search for further information about these or an SAP related objects