MRSA1F04 is a standard ABAP INCLUDE 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 MRSA1F04 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: Include MRSA1F04
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
RSAT_CREATE_TREE CALL FUNCTION 'RSAT_CREATE_TREE' EXPORTING OWNER_REPID = THIS_REPID DYNNR = THIS_DYNNR RIGHT_OR_LEFT_ALIGN = 'R' CONTROL_CONTAINER = P_CONTR_ID TOP = 2 * B_DROPALLOW = * CALLBACKNAME_DROP = * B_DRAG_ALLOW = * REG_EVENT_EXPAND_NO_CHILDREN = 'X' * CALLBACKNAME_EXPAND_NO_CHILD = 'RSA1_CALLBACK_NO_CHILD_EXP' * REGISTER_EVENT_ITEM_DBL_CLICK = 'X' * CALLBACKNAME_ITEM_DBL_CLK = 'RSA1_CALLBACK_DBL_CLICK' * REGISTER_EVENT_RMOUSE_DOWN = 'X' * CALLBACKNAME_RMOUSEDOWN = 'RSA1_CALLBACK_MOUSE_DOWN' I_HIERARCHY_HEADER = G_HIERARCHY_HEADER HIDE_HIER = 1 * AUTOHEADERWIDTH = RS_C_TRUE TABLES ADDCOLUMNS = G_TREELIST_COLUMNS ADDHEADERS = G_TREELIST_HEADERS CHANGING TREEHANDLE = P_TREE EXCEPTIONS CREATE_ERROR = 1 OTHERS = 2.
DDIF_FIELDINFO_GET CALL FUNCTION 'DDIF_FIELDINFO_GET' EXPORTING TABNAME = L_TABNAME * FIELDNAME = ' ' * LANGU = SY-LANGU * IMPORTING * X030L_WA = TABLES DFIES_TAB = L_FIELDS EXCEPTIONS NOT_FOUND = 1 INTERNAL_ERROR = 2 OTHERS = 3.
RSAT_SET_DRAGDROP_MODE CALL FUNCTION 'RSAT_SET_DRAGDROP_MODE' EXPORTING B_DRAGALLOW = P_DRAGMODE B_DROPALLOW = P_DROPMODE CHANGING TREEHANDLE = P_TREE EXCEPTIONS FAILED = 1 OTHERS = 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.