MPZ01F02 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 MPZ01F02 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!
HR_READ_INFOTYPE_AUTHC_DISABLE CALL FUNCTION 'HR_READ_INFOTYPE_AUTHC_DISABLE'.
HR_READ_INFOTYPE CALL FUNCTION 'HR_READ_INFOTYPE' EXPORTING pernr = p_result-pernr infty = '0105' begda = sy-datum "#EC dom_equal endda = sy-datum "#EC dom_equal IMPORTING subrc = subrc TABLES infty_tab = i0105 EXCEPTIONS infty_not_found = 1 OTHERS = 2.
BAPI_EMPLOYEE_GETDATA CALL FUNCTION 'BAPI_EMPLOYEE_GETDATA' EXPORTING employee_id = pernr_selected lastname_m = lastname_m fstname_m = fstname_m fst_name_k = fst_name_k lst_name_k = lst_name_k fst_name_r = fst_name_r lst_name_r = lst_name_r * orgtxt = orgtxt * jobtxt = jobtxt * postxt = postxt costcenter = costcenter blding_no = blding_no room_no = room_no phone_no = phone_no liplate_no = liplate_no userid = userid extension = extension readdb = true orgtxt_lg = orgtxt jobtxt_lg = jobtxt postxt_lg = postxt authority_check = check_auth IMPORTING return = retbapi TABLES org_assignment = it0001b personal_data = it0002 internal_control = it0032 communication = it0105 archivelink = itoarc EXCEPTIONS OTHERS = 0.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.