RSA1XP02 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 RSA1XP02 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.
Title: XPRA for 2.0B
INCLUDE RSA1LOG.
No SAP DATABASE tables are accessed within this REPORT code!
RSA2_RSADMIN_PUT CALL FUNCTION 'RSA2_RSADMIN_PUT' EXPORTING I_OBJECT = 'RSA1XP02' I_VALUE = SY-DATUM.
RSA6_SPROT_GET CALL FUNCTION 'RSA6_SPROT_GET' IMPORTING E_T_SPROT = L_T_SPROT.
APPEND_PROTOCOL CALL FUNCTION 'APPEND_PROTOCOL' TABLES XMSG = L_T_SPROT EXCEPTIONS PROT_NOT_INITIALIZED = 1.
RSAN_FUNCTION_CHECK CALL FUNCTION 'RSAN_FUNCTION_CHECK' EXPORTING I_FUNCNAME = 'RS_MANDT_AFTER_IMPORT_FL_SET' EXCEPTIONS SYNTAX_ERROR = 1.
RS_MANDT_AFTER_IMPORT_FL_SET IF SY-SUBRC = 0. CALL FUNCTION 'RS_MANDT_AFTER_IMPORT_FL_SET'. ENDIF.
DDIF_DTEL_GET CALL FUNCTION 'DDIF_DTEL_GET' EXPORTING NAME = L_DTELNM LANGU = SY-LANGU IMPORTING DD04V_WA = E_S_DD004V EXCEPTIONS OTHERS = 1.
DDIF_TABL_GET CALL FUNCTION 'DDIF_TABL_GET' EXPORTING NAME = L_STRUCT LANGU = SY-LANGU TABLES DD03P_TAB = E_T_DD03P EXCEPTIONS OTHERS = 0.
RS_BIW_ACTIVE CALL FUNCTION 'RS_BIW_ACTIVE' IMPORTING E_BIW_ACTIVE = L_FLAG.
RSA_LOGICAL_SYSTEM_BIW_GET CALL FUNCTION 'RSA_LOGICAL_SYSTEM_BIW_GET' EXPORTING I_WITHOUT_POPUP = RSAOT_C_FLAG-ON IMPORTING E_LOGSYS_BIW = L_LOGSYS EXCEPTIONS OTHERS = 1.
RSA5_APCO_INSERT CALL FUNCTION 'RSA5_APCO_INSERT' EXPORTING I_NO_TRANSPORT = RSAOT_C_FLAG-ON I_PARENT = 'SAP-R/3' I_NAME = L_T_APPL I_XPRA = 'X'.
RSA2_RSADMIN_GET CALL FUNCTION 'RSA2_RSADMIN_GET' EXPORTING I_OBJECT = 'RSA1XP01' CHANGING C_VALUE = L_VALUE.
RSA2_RSADMIN_GET CALL FUNCTION 'RSA2_RSADMIN_GET' EXPORTING I_OBJECT = 'RSA1XP02' CHANGING C_VALUE = L_VALUE.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.