MP501020 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 MP501020 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_HCP_CHECK_INFOTYPE_DATA CALL FUNCTION 'HR_HCP_CHECK_INFOTYPE_DATA' EXPORTING im_citem_tab = lt_costitem IMPORTING EX_ERROR_TAB = lt_error.
HR_HCP_CHECK_SUBTY CALL FUNCTION 'HR_HCP_CHECK_SUBTY' EXPORTING IM_INFTY = '5010' IM_SUBTY = p_subty EXCEPTIONS SUBTYP_NOT_EXIST = 1 OTHERS = 2 .
HRCA_GET_ACTIVE_DIMENSIONS call function 'HRCA_GET_ACTIVE_DIMENSIONS' EXPORTING i_company_code = lv_bukrs IMPORTING e_budget_period_active = lv_budget_period_active e_budget_period_start_hr = lv_budget_period_start_hr TABLES return_table = lt_return EXCEPTIONS error_occured = 1 others = 2.
HRCA_FM_FUND_BPD_ASSIGNMT_LIST call function 'HRCA_FM_FUND_BPD_ASSIGNMT_LIST' EXPORTING iv_companycode = lv_bukrs iv_fund = lv_geber iv_date = lv_begda IMPORTING et_fmbudgetpd_f4 = lt_fmbudgetpd_f4 EXCEPTIONS not_found = 1 master_data_not_found = 2 no_bpd_assignments = 3 function_not_exist = 4 no_fikrs_for_bukrs = 5 fm_not_active = 6 others = 7.
HRCA_FM_FUND_BPD_ASSIGNMT_LIST call function 'HRCA_FM_FUND_BPD_ASSIGNMT_LIST' EXPORTING iv_companycode = lv_bukrs iv_fund = lv_geber iv_date = lv_begda IMPORTING et_fmbudgetpd_f4 = lt_fmbudgetpd_f4 EXCEPTIONS not_found = 1 master_data_not_found = 2 no_bpd_assignments = 3 others = 4.
HRCA_GET_ACTIVE_DIMENSIONS * call function 'HRCA_GET_ACTIVE_DIMENSIONS' * exporting * i_company_code = p5010-diffca_bukrs * importing * e_budget_period_active = lv_budget_period_active * e_budget_period_start_hr = lv_budget_period_start_hr * tables * return_table = lt_return * exceptions * error_occured = 1 * others = 2.
HRCA_FM_FUND_BPD_ASSIGNMT_LIST * call function 'HRCA_FM_FUND_BPD_ASSIGNMT_LIST' * exporting * iv_companycode = p5010-diffca_bukrs * iv_fund = p5010-diffca_fonds * iv_date = p5010-begda * importing * et_fmbudgetpd_f4 = lt_fmbudgetpd_f4 * exceptions * not_found = 1 * master_data_not_found = 2 * no_bpd_assignments = 3 * function_not_exist = 4 * no_fikrs_for_bukrs = 5 * fm_not_active = 6 * others = 7.
HRCA_FM_FUND_BPD_ASSIGNMT_LIST * call function 'HRCA_FM_FUND_BPD_ASSIGNMT_LIST' * exporting * iv_companycode = p5010-diffca_bukrs * iv_fund = p5010-diffca_fonds * iv_date = p5010-begda * importing * et_fmbudgetpd_f4 = lt_fmbudgetpd_f4 * exceptions * not_found = 1 * master_data_not_found = 2 * no_bpd_assignments = 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.