MPZ43F00 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 MPZ43F00 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_GETEMPLOYEEDATA_FROMUSER call function 'HR_GETEMPLOYEEDATA_FROMUSER' exporting username = sy-uname importing employeenumber = header_info-pernr name = header_info-name exceptions user_not_found = 1 countrygrouping_not_found = 2 infty_not_found = 3 others = 4.
HR_BEN_HANDLE_ERROR call function 'HR_BEN_HANDLE_ERROR' exporting pernr = header_info-pernr msg_class = sy-msgid msg_number = sy-msgno msg_par1 = sy-msgv1 msg_par2 = sy-msgv2 msg_par3 = sy-msgv3 msg_par4 = sy-msgv4 severity = 0 " not important here reaction = reaction tables error_table = error_table.
HR_BEN_READ_EE_BENEFIT_DATA call function 'HR_BEN_READ_EE_BENEFIT_DATA' exporting pernr = header_info-pernr datum = header_info-valdt reaction = no_log importing ee_benefit_data = ee_benefit_data subrc = retcd tables error_table = error_table.
HR_BEN_HANDLE_ERROR call function 'HR_BEN_HANDLE_ERROR' exporting pernr = header_info-pernr msg_class = msg_class8 msg_number = '004' severity = 0 reaction = reaction tables error_table = error_table.
HR_BEN_GET_CURRENCY call function 'HR_BEN_GET_CURRENCY' exporting barea = header_info-barea datum = header_info-valdt reaction = reaction importing currency = header_info-curre subrc = retcd tables error_table = error_table.
HR_BEN_GET_PENSION_RESULTS call function 'HR_BEN_GET_PENSION_RESULTS' exporting pernr = header_info-pernr begda = low_date endda = header_info-valdt reaction = reaction importing subrc = subrc tables pension_results = pension_results error_table = error_table.
HR_BEN_F4_VALUE_REQUEST call function 'HR_BEN_F4_VALUE_REQUEST' exporting retfield = 'BPLAN' dynpprog = repid dynpnr = dynnr dynprofield = 'RPBENDPR-BPLAN' display_mode = display_mode reaction = no_msg importing subrc = subrc tables value_tab = plan_table error_table = error_table.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.