MWPERE01 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 MWPERE01 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: Events
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
LOCATIONS_FOR_DOWNLOAD CALL FUNCTION 'LOCATIONS_FOR_DOWNLOAD' EXPORTING PI_DATUM_VON = P_DAT_V PI_DATUM_BIS = P_DAT_B * pi_kunnr = TABLES T_T001W_VALID = IT_T001W_VALID T_T001W_ALL = IT_T001W_ALL T_WRF1_VALID = IT_WRF1_VALID T_KUNNR = S_STORE T_VKORG = S_VKORG T_VTWEG = S_VTWEG EXCEPTIONS NOT_FOUND = 1 NO_VALID_LOCATIONS = 2 INVALID_PARAMETER = 3 NO_LOCATIONS = 4 OTHERS = 5.
CLFC_LEGAL_OBJECT_IN_CLASS CALL FUNCTION 'CLFC_LEGAL_OBJECT_IN_CLASS' EXPORTING CLASS = S_CLASS CLASS_TYPE = S_CLTYPE OBJECT = L_OBJECT EXCEPTIONS CLASS_NOT_FOUND = 1 OBJECT_IN_CLASS = 2 OBJECT_NOT_IN_CLASS = 3 OTHERS = 4.
WRITE_MESSAGE_NEW call function 'WRITE_MESSAGE_NEW' EXPORTING MSGID = IT_WPXST-MSGID MSGNO = I_WPXST-MSGNR MSGTY = IK_MESSAGE_TYP MSGV1 = IT_WPXST-PARA1 MSGV2 = IT_WPXST-PARA2 MSGV3 = IT_WPXST-PARA3 MSGV4 = IT_WPXST-PARA4 MSGV5 = ' ' IMPORTING ERROR = I_ERROR MESSG = I_MESSAGE MSGLN = I_LENGTH.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.