RSA1_TRFC_OPTION_SET 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 RSA1_TRFC_OPTION_SET 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: TRFC = Standard tRFC Scheduling
Selection Text: TRFC3X = Standard tRFC Scheduling
Selection Text: TRFCSMQS = Autom: Deregistration in SMQS
Title: BW Service API: Behavior in tRFC Outbound Scheduling
Text Symbol: BL1 = Behavior with Connected BW >= 7.0
Text Symbol: BL2 = Behavior with Connected BW 3.x
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
FUNCTION_EXISTS CALL FUNCTION 'FUNCTION_EXISTS' EXPORTING FUNCNAME = 'QRFC_GET_VERSION' EXCEPTIONS FUNCTION_NOT_EXIST = 1 OTHERS = 2.
QRFC_GET_VERSION CALL FUNCTION 'QRFC_GET_VERSION' IMPORTING QVERSION = l_qrfc_version.
RSA2_RSADMIN_GET CALL FUNCTION 'RSA2_RSADMIN_GET' EXPORTING I_OBJECT = 'STANDARD_TRFC' CHANGING C_VALUE = l_standard_trfc.
RSA2_RSADMIN_GET CALL FUNCTION 'RSA2_RSADMIN_GET' EXPORTING I_OBJECT = 'STANDARD_TRFC_3x' CHANGING C_VALUE = l_standard_trfc_3x.
RSA2_RSADMIN_GET CALL FUNCTION 'RSA2_RSADMIN_GET' EXPORTING I_OBJECT = 'SMQS_SCHEDULING_OFF' CHANGING C_VALUE = l_smqs.
RSA2_RSADMIN_PUT CALL FUNCTION 'RSA2_RSADMIN_PUT' EXPORTING I_OBJECT = 'STANDARD_TRFC' I_VALUE = l_standard_trfc.
RSA2_RSADMIN_PUT CALL FUNCTION 'RSA2_RSADMIN_PUT' EXPORTING I_OBJECT = 'STANDARD_TRFC_3x' I_VALUE = l_standard_trfc_3x.
RSA2_RSADMIN_PUT CALL FUNCTION 'RSA2_RSADMIN_PUT' EXPORTING I_OBJECT = 'SMQS_SCHEDULING_OFF' I_VALUE = l_smqs.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.