MSMLGF02 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 MSMLGF02 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!
TH_SERVER_LIST CALL FUNCTION 'TH_SERVER_LIST' TABLES LIST = SERVERLIST.
THUSRINFO CALL FUNCTION 'THUSRINFO' DESTINATION SERVERLIST-NAME TABLES USR_TABL = GZ_USR_TBL1 EXCEPTIONS COMMUNICATION_FAILURE = 17 OTHERS = 1.
TH_SYSTEMWIDE_USER_LIST * CALL FUNCTION 'TH_SYSTEMWIDE_USER_LIST' * TABLES LIST = USR_TBL * EXCEPTIONS OTHERS = 1.
RZL_STRG_READALL_I CALL FUNCTION 'RZL_STRG_READALL_I' EXPORTING SRVNAME = MSGSERVER TABLES INTG_TBL = INTG_TBL EXCEPTIONS OTHERS = 01.
TH_SERVER_LIST CALL FUNCTION 'TH_SERVER_LIST' "redundant, intg_tbl good enough TABLES LIST = SERVER_LIST.
RZL_STRG_READALL_C CALL FUNCTION 'RZL_STRG_READALL_C' EXPORTING SRVNAME = MSGSERVER TABLES TEXT_TBL = TEXT_TBL EXCEPTIONS OTHERS = 01.
TH_SERVER_LIST * call function 'TH_SERVER_LIST' * tables * list = server_list.
TH_SERVER_LIST CALL FUNCTION 'TH_SERVER_LIST' TABLES LIST = SERVERLIST.
RZL_STRG_DEL CALL FUNCTION 'RZL_STRG_DEL' EXPORTING SRVNAME = GZ_STATE_TBL-APSERVER NAME = 'FAV_COMPUTE_LGIN' TYP = 'C' EXCEPTIONS OTHERS = 01.
RZL_SUBMIT CALL FUNCTION 'RZL_SUBMIT' DESTINATION GZ_STATE_TBL-APSERVER EXPORTING REPID = 'RSRZLLG0' EXCEPTIONS OTHERS = 01.
SALI_INTERNAL_SETTINGS CALL FUNCTION 'SALI_INTERNAL_SETTINGS' EXPORTING ALLOW_SYSTEMWIDE = 'X' EXCEPTIONS SETTING_NOT_ALLOWED = 1 OTHERS = 2.
SALI_MT_GET_TID_BY_NAME CALL FUNCTION 'SALI_MT_GET_TID_BY_NAME' EXPORTING MT_FULL_NAME = quality_pathname IMPORTING TID = perf_tid EXCEPTIONS UNABLE_TO_EXPAND_NAME = 1 NAME_NOT_FOUND = 2 COMMUNICATION_FAILURE = 3 OTHER_PROBLEM = 4 INTERNAL_ERROR = 5 WRONG_SEGMENT = 6 INTERNAL_FAILURE_SALS = 7 OTHERS = 8.
SALR_MTE_GET_TID_BY_NAME * CALL FUNCTION 'SALR_MTE_GET_TID_BY_NAME' * EXPORTING * LONGNAME = quality_pathname * IMPORTING * TID = perf_tid * EXCEPTIONS * SEGMENT_NOT_AVAILIABLE = 1 * NAME_UNABLE_TO_EXPAND = 2 * NAME_NOT_FOUND = 3 * C_CALL_FAILED = 4 * COMMUNICATION_ERROR = 5 * INTERNAL_ERROR = 6 * UNKNOWN_ERROR = 7 * DB_ERROR = 8 * OTHERS = 9.
SALI_PERF_REPORT_VALUE CALL FUNCTION 'SALI_PERF_REPORT_VALUE' EXPORTING TOTAL_OF_REPORTED_VALUES = quality CHANGING TID = perf_tid EXCEPTIONS INVALID_TID = 1 WRONG_TYPECLASS = 2 INVALID_PARAMETERS = 3 COMMUNICATION_FAILURE = 4 OTHER_PROBLEM = 5 WRONG_SEGMENT = 6 INTERNAL_FAILURE_SALS = 7 OTHERS = 8. "ignore exception
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.