RSSM_EXPAND_REQUESTLIST 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 RSSM_EXPAND_REQUESTLIST 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: DTA = Data Target
Title: Expand request list from the SAVE2 tables
Text Symbol: 001 = Data target & does not exist in A version or is not a cube/DSO
Text Symbol: 002 = No requests exist for data target & in the SAVE tables
Text Symbol: 003 = No requests exist for data target & in table RSICCONT_SAVE2
Text Symbol: 004 = Data target &1: Request &2 to request &3 reloaded
Text Symbol: 005 = Error in Table RSREQREDUCE - please see/execute Note 1789133
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
RSSM_AUTHORITY_CHECK call function 'RSSM_AUTHORITY_CHECK' exporting i_actvt = rssb_c_auth_actvt-maintain i_function = 'ADMWB_INFOCUBE' i_infocube = dta i_obj = rssb_c_auth_icubeobj-data exceptions others = 5.
RSAWB_MAINTAIN_DTA call function 'RSAWB_MAINTAIN_DTA' exporting i_method = rsatr_c_dta_get i_dta = dta importing e_objvers = l_objvers e_s_dta = l_s_dta e_not_allowed = l_not_allowed exceptions cx_rs_version_not_found = 1 transact_cube_not_switched = 2 others = 3.
ENQUEUE_ERSICCONT call function 'ENQUEUE_ERSICCONT' exporting icube = dta _wait = 'X' exceptions foreign_lock = 1.
RSENQ_ENQUEUE call function 'RSENQ_ENQUEUE' exporting i_action = rsenq_c_refresh_datatarget i_t_object = l_t_object importing e_lockid = l_lockid changing c_t_msg = l_t_msg exceptions locked = 1 others = 2.
RSSM_RSMDATASTATE_MAINTAIN call function 'RSSM_RSMDATASTATE_MAINTAIN' exporting i_infocube = dta i_mode = 'R' i_transport = rs_c_false i_no_auth_check = 'X' importing e_type = l_type changing c_s_rsmdatastate = l_s_datastate_s.
DEQUEUE_ERSICCONT call function 'DEQUEUE_ERSICCONT' exporting icube = dta _synchron = 'X'.
RSM1_UPDATE_FAST_ACCESS_TABLES call function 'RSM1_UPDATE_FAST_ACCESS_TABLES' exporting i_action = 'ALL' i_dta = l_dta i_dtatype = l_dtatype i_s_datastate = l_s_datastate changing c_t_statmanpart = l_t_statmanpart[] c_t_statmanpartt = l_t_statmanpartt[].
DB_COMMIT call function 'DB_COMMIT'.
RSENQ_DEQUEUE call function 'RSENQ_DEQUEUE' exporting i_lockid = l_lockid.
DEQUEUE_ERSICCONT call function 'DEQUEUE_ERSICCONT' exporting icube = dta _synchron = '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.