RSAPTS1 is a standard ABAP INCLUDE 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 RSAPTS1 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.
INCLUDE LRSAPD00.
INCLUDE RSAUCMAC.
INCLUDE LRSAPD01.
No SAP DATABASE tables are accessed within this REPORT code!
RSA1_SINGLE_OLTPSOURCE_GET *@CALL FUNCTION 'RSA1_SINGLE_OLTPSOURCE_GET' *@ EXPORTING *@ i_oltpsource = i_isource *@ IMPORTING *@ e_s_rois = p_rois_wa *@ e_s_oltpsource = l_s_oltpsource *@ e_t_segments = p_ddic_segments_tab *@ e_language_key = l_language_key *@ EXCEPTIONS *@ no_authority = 1 *@ OTHERS = 2.
RSUR_MBC_ALIGNMENT_CHECK *@ CALL FUNCTION 'RSUR_MBC_ALIGNMENT_CHECK' *@ EXPORTING *@ I_DESTINATION = L_DESTINATION *@ IMPORTING *@ E_MBC_ALIGNMENT = L_MBC_ALIGNMENT *@ E_MBC_LANGUAGES = L_MBC_LANGUAGES *@ E_MBC_STRUCT_TO_CONTAINER = L_MBC_STRUCT_TO_CONTAINER *@ E_MBC_CONTAINER_TO_PACKET = L_MBC_CONTAINER_TO_PACKET *@ E_MBC_CODEPAGE_UNIQUE = L_MBC_CODEPAGE_UNIQUE *@ TABLES *@ E_T_CPINFOS = L_T_CPINFOS *@ EXCEPTIONS *@ REMOTE_ERROR = 1.
RSAP_IDOC_DETERMINE_PARAMETERS CALL FUNCTION 'RSAP_IDOC_DETERMINE_PARAMETERS' EXPORTING i_oltpsource = i_isource * i_slogsys = i_s_request-sndprn * i_rlogsys = i_rlogsys * i_updmode = i_updmode i_skip_calculation = 'X' IMPORTING e_s_parameters = l_s_extrparams e_subrc = l_subrc.
RSAL_LOG_GET CALL FUNCTION 'RSAL_LOG_GET' IMPORTING e_t_global = l_t_messages.
RSAL_LOG_CLOSE CALL FUNCTION 'RSAL_LOG_CLOSE' EXPORTING i_intern = sbiwa_c_flag_on.
RSUR_DATA_WRAP_RFC CALL FUNCTION 'RSUR_DATA_WRAP_RFC' EXPORTING i_data = l_sx_tf i_target_release = i_target_release IMPORTING e_export_release = e_export_release TABLES e_t_container = e_t_container EXCEPTIONS conversion_failed = 1.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.