RSA1XP04 is a standard Executable ABAP Report available within your SAP system (depending on your version and release level). It is used for Conversion of DataSource Metadata Umsetzen der DataSource Metadaten ..see full standard documentation available for this report. Also check out the submitted Comments related to this SAP report and the details below to see which OBJECTS it interacts with such as TABLES, FUNCTION MODULES, INCLUDES ETC.
If you would like to execute this report or see the full code listing simply enter RSA1XP04 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 BW Service API 3.0A
Text Symbol: 001 = BW DataSources
INCLUDE RSA1LOG.
No SAP DATABASE tables are accessed within this REPORT code!
BWSAPI_GET_VERSION CALL FUNCTION 'BWSAPI_GET_VERSION' IMPORTING RELEASE = L_RSSAPIVERS-RELEASE EXCEPTIONS NO_VERSION = 1 OTHERS = 2.
RSA2_RSADMIN_GET CALL FUNCTION 'RSA2_RSADMIN_GET' EXPORTING I_OBJECT = 'RSA1XP04_RELEASE' CHANGING C_VALUE = L_RELEASE.
RSA2_RSADMIN_GET CALL FUNCTION 'RSA2_RSADMIN_GET' EXPORTING I_OBJECT = 'RSA1XP04_DATE' CHANGING C_VALUE = L_DATE.
RSA2_RSADMIN_PUT CALL FUNCTION 'RSA2_RSADMIN_PUT' EXPORTING I_OBJECT = 'RSA1XP04_DATE' I_VALUE = SY-DATUM.
RSA2_RSADMIN_PUT CALL FUNCTION 'RSA2_RSADMIN_PUT' EXPORTING I_OBJECT = 'RSA1XP04_RELEASE' I_VALUE = L_RSSAPIVERS-RELEASE.
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.
RS_BIW_ACTIVE CALL FUNCTION 'RS_BIW_ACTIVE' IMPORTING E_BIW_ACTIVE = L_FLAG.
RSAN_LOGSYS_DETERMINE CALL FUNCTION 'RSAN_LOGSYS_DETERMINE' EXPORTING I_CLIENT = L_S_T000-MANDT IMPORTING E_LOGSYS = 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'.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.