RSO_PACKAGE_ANALYSIS_TOOL 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 RSO_PACKAGE_ANALYSIS_TOOL 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: DEP = Display Packages Dependent
Selection Text: MODEDECO = By Object Usages (DECO)
Selection Text: MODEDELT = DECO <-> DCL Delta
Selection Text: MODEPACK = Using DCLs of Packages
Selection Text: R_DEVCEX = Excepted Packages
Selection Text: R_DEVCL = Additional Packages
Selection Text: R_P_DEP = on Following Packages:
Selection Text: SH_PACK = Display Relevant Packages
Selection Text: DLVUNIT = D .
Title: Package Analysis for BW
Text Symbol: 001 = Determination of Relevant Packages
Text Symbol: 002 = How are the dependencies determined?
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
TR_DEVCLASS_GET CALL FUNCTION 'TR_DEVCLASS_GET' EXPORTING iv_devclass = l_s_tdevc-devclass IMPORTING es_tdevc = l_s_tdevc EXCEPTIONS devclass_not_found = 1.
RSNDI_MD_ATTRIBUTES_UPDATE CALL FUNCTION 'RSNDI_MD_ATTRIBUTES_UPDATE' EXPORTING i_iobjnm = 'DECOPAKNM' TABLES i_t_attributes = l_t_attributes i_t_data = l_t_data e_t_messages = l_t_messages.
DB_COMMIT CALL FUNCTION 'DB_COMMIT'.
BM_DEVCLASS_ASS_COMP CALL FUNCTION 'BM_DEVCLASS_ASS_COMP' EXPORTING devclass = i_devclass * LANGUAGE = SY-LANGU * IMPORTING * RC = * TRM_INFO = TABLES components = l_t_comp EXCEPTIONS no_component_assigned = 1 devclass_not_found = 2.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.