MEA43F00 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 MEA43F00 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: Forms SAPMEA43
INCLUDE IETERMIN.
INCLUDE IEPHSUB0.
No SAP DATABASE tables are accessed within this REPORT code!
MSG_ACTION CALL FUNCTION 'MSG_ACTION' EXPORTING x_msg_handle = msg_handle x_action = co_msg_numbers IMPORTING * Y_LAST_MSG = yt_lognumbers = lt_lognumbers EXCEPTIONS action_not_supported = 1 handle_invalid = 2 not_found = 3 OTHERS = 4.
MSG_DISPLAY_LOGNUMBERS CALL FUNCTION 'MSG_DISPLAY_LOGNUMBERS' TABLES tx_lognumbers = t_lognr EXCEPTIONS not_found = 1 OTHERS = 2.
MSG_STATUS_APPL_LOG * CALL FUNCTION 'MSG_STATUS_APPL_LOG' * EXPORTING * X_APPL_LOG = 'IU15' * IMPORTING * Y_EMPTY = L_EMPTY.
MSG_ACTION * CALL FUNCTION 'MSG_ACTION' * EXPORTING * X_MSG_HANDLE = MSG_HANDLE * X_ACTION = CO_MSG_DSPL * EXCEPTIONS * ACTION_NOT_SUPPORTED = 1 * HANDLE_INVALID = 2 * NOT_FOUND = 3 * OTHERS = 4.
MSG_CLOSE CALL FUNCTION 'MSG_CLOSE' EXPORTING x_msg_handle = msg_handle.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.