RIXPRA_ISAD30_3 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 RIXPRA_ISAD30_3 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 RSUGSINC.
No SAP DATABASE tables are accessed within this REPORT code!
SFW_GET_CLIENT_FOR_XPRA CALL FUNCTION 'SFW_GET_CLIENT_FOR_XPRA' EXPORTING * I_OBJECTTYPE = 'PROG' I_OBJECTNAME = 'RIXPRA_ISAD30_3' * I_SELECT_STAND_BY = ' ' CHANGING T_T000 = IT000 .
DB_COMMIT CALL FUNCTION 'DB_COMMIT'.
UPG_READ_ADD_ON_PRODUCTS CALL FUNCTION 'UPG_READ_ADD_ON_PRODUCTS' TABLES TT_AVERS = L_AVERS.
TR_APPEND_LOG CALL FUNCTION 'TR_APPEND_LOG' TABLES XMSG = IPROT EXCEPTIONS FILE_NOT_FOUND = 0 WRONG_CALL = 0 OTHERS = 0.
UPG_GET_UPGRADE_INFO CALL FUNCTION 'UPG_GET_UPGRADE_INFO' EXPORTING IV_COMPONENT = '*' IV_READMODE = GC_READMODE_ACTIVE IV_COMP_SELECT = 'A' TABLES TT_UPGINFO = L_UVERS EXCEPTIONS READMODE_UNKNOWN = 1 COMPONENT_NOT_ACTIVE = 2 AMBIGIOUS_ENTRIES = 3 NO_UPGRADE_ACTIVE = 4 OTHERS = 5.
TR_FLUSH_LOG CALL FUNCTION 'TR_FLUSH_LOG'.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.