SRT_RFC_WS_COMPARE 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 SRT_RFC_WS_COMPARE 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: P_W_SID = Sequence ID
Selection Text: P_W_PERS = WSRM, Persistent Sequence
Selection Text: P_WS = Web Service (WS)
Selection Text: P_U_SID = Sequence ID
Selection Text: P_U_PERS = Shortcut, Persistent Sequence
Selection Text: P_TRIP = Number of Trips
Selection Text: P_TRACE = Activate
Selection Text: P_S_LESS = WS, Stateless
Selection Text: P_S_FUL = WS, Stateful
Selection Text: P_RFC_SL = RFC,Stateless
Selection Text: P_RFC_SF = RFC,Stateful
Selection Text: P_RFC_BG = Background RFC
Selection Text: P_RFC = Remote Function Call (RFC)
Selection Text: P_REMOTE = Remote Test
Selection Text: P_MESS = Number of Messages
Selection Text: P_LOCAL = Local Test
Title: SRT: Comparison RFC - WS
Text Symbol: W08 = Use update task
Text Symbol: W07 = Iitems per call
Text Symbol: W06 = Web Service - Complex message test
Text Symbol: W05 = WSRM, Persistent Sequence
Text Symbol: W04 = Sequence ID
Text Symbol: W03 = Shortcut, Persistent Sequence
Text Symbol: W02 = Stateful WS
Text Symbol: W01 = Stateless WS
Text Symbol: T03 = Test All
Text Symbol: T02 = Test Cases
Text Symbol: T01 = Transport Protocol
Text Symbol: R03 = Background RFC
Text Symbol: R02 = Stateful RFC
Text Symbol: R01 = Stateless RFC
Text Symbol: P01 = WS Performance Trace
Text Symbol: M01 = Mass Processing
Text Symbol: C04 = (will be generated if not existing)
Text Symbol: C03 = WS Logical Port
Text Symbol: C02 = RFC Destination
Text Symbol: C01 = Communication Protocol
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
SRT_TEST_STATELESS CALL FUNCTION 'SRT_TEST_STATELESS' DESTINATION l_rfc_dest EXPORTING im_string = l_input IMPORTING ex_string = l_output EXCEPTIONS system_failure = 1 MESSAGE l_error_text communication_failure = 2 MESSAGE l_error_text application_error = 3 max_string_length_reached = 4 OTHERS = 5.
SYSTEM_RESET_RFC_SERVER CALL FUNCTION 'SYSTEM_RESET_RFC_SERVER' DESTINATION l_rfc_dest EXCEPTIONS OTHERS = 0.
SRT_TEST_STATEFUL CALL FUNCTION 'SRT_TEST_STATEFUL' DESTINATION l_rfc_dest EXPORTING im_string = l_input IMPORTING ex_string = l_output EXCEPTIONS system_failure = 1 MESSAGE l_error_text communication_failure = 2 MESSAGE l_error_text application_error = 3 max_string_length_reached = 4 OTHERS = 5.
SYSTEM_RESET_RFC_SERVER CALL FUNCTION 'SYSTEM_RESET_RFC_SERVER' DESTINATION l_rfc_dest EXCEPTIONS OTHERS = 0.
SRT_TEST_RELIABLE CALL FUNCTION 'SRT_TEST_RELIABLE' IN BACKGROUND UNIT lr_bgrfc_unit EXPORTING im_string = l_input.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.