HFILDED0_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 HFILDED0_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: Forms for Finnish wage type report.
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
REUSE_ALV_GRID_DISPLAY CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY' EXPORTING is_layout = is_layout it_fieldcat = it_fieldcat[] is_variant = is_variant i_save = 'X' TABLES t_outtab = t_outtab.
RH_TEXT_GET CALL FUNCTION 'RH_TEXT_GET' EXPORTING tabname = 'PFI_HFICTAX0' record = outtab TABLES fields = i_fields text_tab = i_texts EXCEPTIONS OTHERS = 4.
REUSE_ALV_FIELDCATALOG_MERGE CALL FUNCTION 'REUSE_ALV_FIELDCATALOG_MERGE' EXPORTING i_structure_name = i_name CHANGING ct_fieldcat = fieldcat[].
F4IF_INT_TABLE_VALUE_REQUEST CALL FUNCTION 'F4IF_INT_TABLE_VALUE_REQUEST' EXPORTING retfield = 'APPL' dynpprog = dynpprog dynpnr = dynpnr dynprofield = 'APPL' value_org = 'S' TABLES value_tab = f4_tab EXCEPTIONS parameter_error = 1 no_values_found = 2 OTHERS = 3.
HR_FI_RETRODIFF_GET CALL FUNCTION 'HR_FI_RETRODIFF_GET' EXPORTING persnr = p_pernr from = p_begda to = p_endda appl = p_appl IMPORTING salary_org = p_salary_org[] EXCEPTIONS no_employer_identification = 1 no_tax_reference_number = 2 no_payroll_results = 3 no_entry_found_on_cu = 4 import_error = 5 * OTHERS = 6 .
HR_DISPLAY_ERROR_LIST CALL FUNCTION 'HR_DISPLAY_ERROR_LIST' EXPORTING no_popup = 'X' no_print = space TABLES error = p_errtab.
HR_DISPLAY_ERROR_LIST CALL FUNCTION 'HR_DISPLAY_ERROR_LIST' TABLES error = p_errtab.
REUSE_ALV_FIELDCATALOG_MERGE CALL FUNCTION 'REUSE_ALV_FIELDCATALOG_MERGE' EXPORTING i_structure_name = i_name CHANGING ct_fieldcat = p_fldcat[].
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.