MASMGFT0 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 MASMGFT0 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: MASMGFT0
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
VALUE_ARTICLE_HELP CALL FUNCTION 'VALUE_ARTICLE_HELP' EXPORTING I_MATKL = WRF6-MATKL I_XWHAT = MATERIAL IMPORTING E_MATNR = MATNR EXCEPTIONS NO_VALUE_ARTICLE_FOUND = 1.
VALUE_ARTICLE_HELP CALL FUNCTION 'VALUE_ARTICLE_HELP' EXPORTING I_MATKL = WRF6-MATKL I_MATNR = T023X-MATNR I_XWHAT = WARTICLE IMPORTING E_MATNR = MATNR EXCEPTIONS NO_VALUE_ARTICLE_FOUND = 01.
RS_TREE_LIST_DISPLAY CALL FUNCTION 'RS_TREE_LIST_DISPLAY' EXPORTING CALLBACK_PROGRAM = 'RWWMASMG' CALLBACK_USER_COMMAND = 'HANDLE_TREE_COMMANDS' CALLBACK_TEXT_DISPLAY = ' ' CALLBACK_COLOR_DISPLAY = ' ' STATUS = 'IMPLICIT' CHECK_DUPLICATE_NAME = '1' COLOR_OF_LINK = '1' COLOR_OF_NODE = '4' LOWER_CASE_SENSITIVE = ' ' MODIFICATION_LOG = ' ' NODE_LENGTH = 30 TEXT_LENGTH = 75 TEXT_LENGTH1 = 0 TEXT_LENGTH2 = 0 RETURN_MARKED_SUBTREE = ' ' SCREEN_START_COLUMN = 0 SCREEN_START_LINE = 0 SCREEN_END_COLUMN = 0 SCREEN_END_LINE = 0 SUPPRESS_NODE_OUTPUT = ' ' USE_CONTROL = I_OCX IMPORTING F15 = E_F15.
HELP_VALUES_GET_WITH_TABLE CALL FUNCTION 'HELP_VALUES_GET_WITH_TABLE' EXPORTING DISPLAY = CHAR1 FIELDNAME = 'MATKL' TABNAME = 'T023X' IMPORTING SELECT_VALUE = WRF6-MATKL TABLES FIELDS = FIELDS VALUETAB = VALUETAB.
HELP_VALUES_GET_WITH_TABLE CALL FUNCTION 'HELP_VALUES_GET_WITH_TABLE' EXPORTING DISPLAY = CHAR1 FIELDNAME = 'WERKS' TABNAME = 'T001W' SHOW_ALL_VALUES_AT_FIRST_TIME = 'X' IMPORTING SELECT_VALUE = T001W-WERKS TABLES FIELDS = FIELDS VALUETAB = VALUETAB.
RS_TREE_CONSTRUCT CALL FUNCTION 'RS_TREE_CONSTRUCT' EXPORTING INSERT_ID = '000000' RELATIONSHIP = ' ' TABLES NODETAB = PE_T_NODES * EXCEPTIONS * TREE_FAILURE = 1 * ID_NOT_FOUND = 2 * WRONG_RELATIONSHIP = 3 * OTHERS = 4 .
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.