MPU30CB5 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 MPU30CB5 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!
TREEV_GET_EP_EXPAND_NC CALL FUNCTION 'TREEV_GET_EP_EXPAND_NC' EXPORTING handle = tree_handle IMPORTING node_key = node_key EXCEPTIONS * FAILED = 1 * CNTL_SYSTEM_ERROR = 2 OTHERS = 0.
TREEV_GET_EP_LINK_CLICK CALL FUNCTION 'TREEV_GET_EP_LINK_CLICK' EXPORTING handle = log_handle * NO_FLUSH = IMPORTING node_key = link_node item_name = link_item EXCEPTIONS failed = 1 instance_not_found = 2 not_allowed_for_simple_tree = 3 links_not_allowed = 4 cntl_system_error = 5 OTHERS = 6.
RS_TREE_GET_NODE CALL FUNCTION 'RS_TREE_GET_NODE' EXPORTING node_id = node_id IMPORTING node_info = link_text EXCEPTIONS OTHERS = 2.
TREEV_ITEM_SET_STYLE CALL FUNCTION 'TREEV_ITEM_SET_STYLE' EXPORTING handle = log_handle node_key = link_node item_name = link_item style = treev_style_emphasized_positiv * NO_FLUSH = EXCEPTIONS OTHERS = 0.
ICON_CREATE CALL FUNCTION 'ICON_CREATE' EXPORTING name = 'ICON_SYSTEM_MARK' INFO = text-q06 IMPORTING RESULT = link_image EXCEPTIONS OTHERS = 0.
TREEV_ITEM_SET_T_IMAGE CALL FUNCTION 'TREEV_ITEM_SET_T_IMAGE' EXPORTING handle = log_handle node_key = link_node item_name = link_item t_image = link_image * NO_FLUSH = EXCEPTIONS OTHERS = 0.
TREEV_ITEM_SET_STYLE CALL FUNCTION 'TREEV_ITEM_SET_STYLE' EXPORTING handle = log_handle node_key = link_node item_name = link_item style = treev_style_default * NO_FLUSH = EXCEPTIONS OTHERS = 0.
ICON_CREATE CALL FUNCTION 'ICON_CREATE' EXPORTING name = 'ICON_SYSTEM_MARK' INFO = text-q04 IMPORTING RESULT = link_image EXCEPTIONS OTHERS = 0.
TREEV_ITEM_SET_T_IMAGE CALL FUNCTION 'TREEV_ITEM_SET_T_IMAGE' EXPORTING handle = log_handle node_key = link_node item_name = link_item t_image = link_image * NO_FLUSH = EXCEPTIONS OTHERS = 0.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.