MPW03O02 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 MPW03O02 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!
EMPLOYEE_READ_APPLICANTNUMBER CALL FUNCTION 'EMPLOYEE_READ_APPLICANTNUMBER' EXPORTING employeenumber = pernr CHANGING applicantnumber = rpapp-aplno EXCEPTIONS no_applicantnumber_found = 0 OTHERS = 0.
BAPI_APPLICANT_GETSTATUS CALL FUNCTION 'BAPI_APPLICANT_GETSTATUS' EXPORTING applicantnumber = rpapp-aplno IMPORTING return = bapi_rcode status = pappliweb-apsta app_status = pappliweb-stata f_o_a_att = pappliweb-salut name = pappliweb-ename TABLES vacancy_status = vacstat EXCEPTIONS OTHERS = 1.
READ_TEXT CALL FUNCTION 'READ_TEXT' EXPORTING id = 'PAWW' language = sy-langu name = str object = 'TEXT' IMPORTING header = header TABLES lines = stext EXCEPTIONS id = 1 language = 2 name = 3 not_found = 4 object = 5 reference_check = 6 wrong_access_to_archive = 7 OTHERS = 8.
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 OTHERS = 3.
HR_ESS_GET_SETTINGS CALL FUNCTION 'HR_ESS_GET_SETTINGS' EXPORTING username = sy-uname.
P_APP_GET_DETAIL_OF_VACANCY CALL FUNCTION 'P_APP_GET_DETAIL_OF_VACANCY' EXPORTING vacid = vacstat-objid IMPORTING header = header "corr. 596555 TS
CONVERT_ITF_TO_HTML CALL FUNCTION 'CONVERT_ITF_TO_HTML' EXPORTING * I_CODEPAGE = i_header = header * I_PAGE = ' ' * I_WINDOW = ' ' * I_SYNTAX_CHECK = ' ' * I_REPLACE = ' ' * I_PRINT_COMMANDS = ' ' i_html_header = ' ' * I_FUNCNAME = ' ' * I_TITLE = ' ' * I_BACKGROUND = ' ' * I_BGCOLOR = ' ' * I_ENCODING = ' ' TABLES t_itf_text = vac_detail t_html_text = vac_detail_html * T_CONV_CHARFORMATS = * T_CONV_PARFORMATS = EXCEPTIONS syntax_check = 1 replace = 2 illegal_header = 3 OTHERS = 4 .
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.