SAPMPWREMIND is a standard Executable ABAP Report 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 SAPMPWREMIND into the relevant SAP transactions such as SE38 or SE80
Below is a list of transaction codes which are relevant to this SAP report
PZPR - Password Reminder
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: Program SAPMPWREMIND
Text Symbol: T01 = Please contact your system administrator
Text Symbol: T02 = You have not recorded a password reminder in your personal ESS preferences
Text Symbol: T03 = ITS not available
Text Symbol: T04 = User not found
Text Symbol: T05 = Your personal information does not include address data
Text Symbol: T07 = Your address data does not include a postal code
Text Symbol: T08 = Your personal information is not available in the system
Text Symbol: T10 = Your personal information does not include a social security number.
Text Symbol: T11 = The country grouping was not found. Please contact your Human Resources Department
Text Symbol: T12 = The personnel number was not found. Please contact your Human Resources Department
Text Symbol: T13 = The personnel number could not be assigned to a user. Please contact your Human Resources Department
INCLUDE AVWRTCXM.
No SAP DATABASE tables are accessed within this REPORT code!
ITS_IMPORT_CONTEXT call function 'ITS_IMPORT_CONTEXT' tables context = contexttab exceptions its_not_available = 1 others = 2.
HR_GETEMPLOYEEDATA_FROMUSER call function 'HR_GETEMPLOYEEDATA_FROMUSER' exporting username = user validbegin = sy-datum importing employeenumber = employeenumber countrygrouping = countrygrouping birthdate = user_dateofbirth return = bapireturn2 exceptions user_not_found = 1 countrygrouping_not_found = 2 infty_not_found = 3 others = 4.
HR_ESS_USER_SETTINGS_RECOVER call function 'HR_ESS_USER_SETTINGS_RECOVER' exporting username = user importing ess_options = ess_options ess_options_dflt = ess_options_dflt ess_options_user = ess_options_user.
BAPI_ADDRESSEMPGETDETAILEDLIST call function 'BAPI_ADDRESSEMPGETDETAILEDLIST' exporting employeenumber = employeenumber subtype = '1' * permanent residence timeintervallow = sy-datum timeintervalhigh = sy-datum importing return = bapireturn1 tables address = address.
BAPI_PERSDATA_GETDETAILEDLIST call function 'BAPI_PERSDATA_GETDETAILEDLIST' exporting employeenumber = employeenumber timeintervallow = sy-datum timeintervalhigh = sy-datum importing return = bapireturn1 tables personaldata = personaldata.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.