HFIIABP0_FORMS 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 HFIIABP0_FORMS 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.
Title: Include HFIIABP0_FORMS
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
HR_DISPLAY_ERROR_LIST CALL FUNCTION 'HR_DISPLAY_ERROR_LIST' EXPORTING no_popup = ' ' no_print = 'X' TABLES error = hrerror EXCEPTIONS OTHERS = 4.
REUSE_ALV_GRID_DISPLAY CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY' EXPORTING i_buffer_active = 'X' i_callback_top_of_page = 'TOP_OF_PAGE' i_callback_program = g_repid i_structure_name = dis_struc is_layout = layout i_save = 'X' is_variant = g_alv_variant TABLES t_outtab = it_hbdays[].
HRCA_PA03_PCR_READ CALL FUNCTION 'HRCA_PA03_PCR_READ' EXPORTING abkrs = abkrs IMPORTING state = state current_period = p_curr_per current_year = p_curr_year permo = p_ee_permo current_begda = curr_begda current_endda = curr_endda following_period = next_per following_year = next_year following_begda = next_begda following_endda = next_endda twm_date = twm_date EXCEPTIONS pcr_does_not_exist = 1 abkrs_does_not_exist = 2 period_does_not_exist = 3 system_failure = 4 communication_failure = 5 error_in_filterobjects = 6 error_in_ale_customizing = 7 not_unique_receiver = 8 no_rfc_destination_maintained = 9 OTHERS = 10.
HR_APPEND_ERROR_LIST CALL FUNCTION 'HR_APPEND_ERROR_LIST' EXPORTING pernr = p_pernr arbgb = p_arbgb msgty = p_msgty msgno = p_msgno msgv1 = p_msgv1 msgv2 = p_msgv2 msgv3 = p_msgv3 msgv4 = p_msgv4.
HR_ENTRY_DATE CALL FUNCTION 'HR_ENTRY_DATE' EXPORTING persnr = persno TABLES entry_dates = i_entry_dates EXCEPTIONS entry_date_not_found = 1 pernr_not_assigned = 2 OTHERS = 3.
BDC_CLOSE_GROUP CALL FUNCTION 'BDC_CLOSE_GROUP'.
BDC_OPEN_GROUP CALL FUNCTION 'BDC_OPEN_GROUP' "BI session opened EXPORTING client = sy-mandt group = bname user = sy-uname keep = keep holddate = holddate.
BDC_INSERT CALL FUNCTION 'BDC_INSERT' EXPORTING tcode = 'PA30' TABLES dynprotab = bdcdata.
HR_GET_QUOTA_DATA CALL FUNCTION 'HR_GET_QUOTA_DATA' EXPORTING pernr = pernr-pernr qtype = '1' mod = 'D' begda = sy-datum endda = sy-datum langu = sy-langu TABLES abwko = abwko i2006 = p2006 EXCEPTIONS infty_not_found = 1 missing_authority = 2 wrong_parameter = 3 OTHERS = 4.
HR_GET_QUOTA_DATA CALL FUNCTION 'HR_GET_QUOTA_DATA' EXPORTING pernr = pernr-pernr qtype = '1' mod = 'A' dedu_datum = paydate * enti_datum = paydate begda = valid-begda endda = valid-endda dedubeg = date deduend = '99991231' langu = sy-langu TABLES abwktart_sel = sel_qtype abwko = abwko i2006 = p2006 cum_values = cum_qt EXCEPTIONS infty_not_found = 1 missing_authority = 2 wrong_parameter = 3 OTHERS = 4.
REUSE_ALV_COMMENTARY_WRITE CALL FUNCTION 'REUSE_ALV_COMMENTARY_WRITE' EXPORTING it_list_commentary = listheader * I_LOGO = * I_END_OF_LIST_GRID = .
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.