MPW12O05 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 MPW12O05 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!
BAPI_APPLICANT_CREATE_PW_REG CALL FUNCTION 'BAPI_APPLICANT_CREATE_PW_REG' EXPORTING APPLICANTNUMBER = RPAPP-APLNO IMPORTING RETURN = BAPI_RCODE EXCEPTIONS OTHERS = 1.
BAPI_APPLICANT_INITPASSWORD CALL FUNCTION 'BAPI_APPLICANT_INITPASSWORD' EXPORTING APPLICANTNUMBER = RPAPP-APLNO IMPORTING PASSWORD = PASS-PASSWORD RETURN = BAPI_RCODE EXCEPTIONS OTHERS = 0.
HR_GETEMPLOYEEDATA_FROMUSER CALL FUNCTION 'HR_GETEMPLOYEEDATA_FROMUSER' EXPORTING USERNAME = SY-UNAME IMPORTING EMPLOYEENUMBER = PERNR COUNTRYGROUPING = MOLGA NAME = ENAME EXCEPTIONS USER_NOT_FOUND = 1 COUNTRYGROUPING_NOT_FOUND = 2 ERROR_MESSAGE = 3 OTHERS = 4.
EMPLOYEE_READ_APPLICANTNUMBER CALL FUNCTION 'EMPLOYEE_READ_APPLICANTNUMBER' EXPORTING EMPLOYEENUMBER = PERNR CHANGING APPLICANTNUMBER = RPAPP-APLNO EXCEPTIONS NO_APPLICANTNUMBER_FOUND = 1 ERROR_MESSAGE = 2 OTHERS = 3.
HR_GET_APPLICANT_DATA CALL FUNCTION 'HR_GET_APPLICANT_DATA' EXPORTING PERNR = PERNR TCLAS = 'A' TABLES APPL_P0002 = APPL_P0002 APPL_P0006 = APPL_P0006 APPL_P0105 = APPL_P0105 EXCEPTIONS INFTY_NOT_FOUND = 1 ERROR_MESSAGE = 2 OTHERS = 3.
HR_ESS_GET_SETTINGS CALL FUNCTION 'HR_ESS_GET_SETTINGS' EXPORTING USERNAME = SY-UNAME.
HR_ESS_SET_ITS_STATUSFIELDS CALL FUNCTION 'HR_ESS_SET_ITS_STATUSFIELDS' EXPORTING STATUS = STATUS STARTMENU = STARTMENU.
HR_ESS_SET_ITS_STATUSFIELDS CALL FUNCTION 'HR_ESS_SET_ITS_STATUSFIELDS' EXPORTING STATUS = STATUS STARTMENU = STARTMENU.
HR_ESS_GET_SETTINGS CALL FUNCTION 'HR_ESS_GET_SETTINGS' EXPORTING USERNAME = SY-UNAME.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.