RSHTTP20 is a standard Executable ABAP Report available within your SAP system (depending on your version and release level). Below is the basic information available for this SAP report including which OBJECTS it interacts with such as TABLES, FUNCTION MODULES, INCLUDES ETC. Also check out the submitted Comments related to this SAP report or see any standard documentation available.
If you would like to execute this report or see the full code listing simply enter RSHTTP20 into the relevant SAP transactions such as SE38 or SE80
This report can be called from another progam/report simply by using the ABAP SUBMIT statement, see below for example ABAP code snipts of how to do this.
Selection Text: BTOCRLF = Blankstocrlf
Selection Text: DEST = D RFC Destination
Selection Text: PWD = Password
Selection Text: URI = URI
Selection Text: USER = User
Title: HTTP GET Test
Text Symbol: 002 = Response data
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
HTTP_SCRAMBLE call function 'HTTP_SCRAMBLE' exporting source = user sourcelen = slen key = key importing destination = user.
HTTP_SCRAMBLE call function 'HTTP_SCRAMBLE' exporting source = pwd sourcelen = slen key = key importing destination = pwd.
HTTP_GET call function 'HTTP_GET' exporting absolute_uri = uri rfc_destination = dest user = user password = pwd blankstocrlf = btocrlf importing status_code = status status_text = statustext response_entity_body_length = rlength tables response_entity_body = response response_headers = response_headers.
RFC_CONNECTION_CLOSE call function 'RFC_CONNECTION_CLOSE' exporting destination = dest exceptions others = 0.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.