MIGO_TREE_CLASS 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 MIGO_TREE_CLASS 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.
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
ES_READ_USER_OBJECTS CALL FUNCTION 'ES_READ_USER_OBJECTS' EXPORTING iobject_typ = 'BUS2012' maxanz = c_history_length maxstore = c_history_length TABLES iesruo = lt_objects_inverse.
ES_READ_USER_OBJECTS CALL FUNCTION 'ES_READ_USER_OBJECTS' EXPORTING iobject_typ = 'BUS2017' maxanz = c_history_length maxstore = c_history_length TABLES iesruo = lt_objects_inverse.
LVC_SORT_DIALOG CALL FUNCTION 'LVC_SORT_DIALOG' EXPORTING it_fieldcat = lt_fc changing ct_sort = lt_sort exceptions others = 1.
ES_SAVE_USER_OBJECTS CALL FUNCTION 'ES_SAVE_USER_OBJECTS' EXPORTING I_NO_REFRESH = x.
ES_DELETE_USER_OBJECTS CALL FUNCTION 'ES_DELETE_USER_OBJECTS' EXPORTING iobject_typ = l_typ iobject_id = l_id.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.