IFREIS_IT_ASSIGN_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 IFREIS_IT_ASSIGN_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.
INCLUDE IFREIT_CHECK_TC_ACTIVE.
No SAP DATABASE tables are accessed within this REPORT code!
SELECT_OPTIONS_RESTRICT CALL FUNCTION 'SELECT_OPTIONS_RESTRICT' EXPORTING * PROGRAM = restriction = lsx_restrict * DB = ' ' EXCEPTIONS too_late = 1 repeated = 2 selopt_without_options = 3 selopt_without_signs = 4 invalid_sign = 5 empty_option_list = 6 invalid_kind = 7 repeated_kind_a = 8 OTHERS = 9 .
RECA_GUI_OBJTYPE_F4_POPUP CALL FUNCTION 'RECA_GUI_OBJTYPE_F4_POPUP' EXPORTING it_objtype = lt_objtype IMPORTING ed_objtype = ld_objtype_sel.
RECA_GUI_BUSOBJ_F4_FOR_OBJTYPE CALL FUNCTION 'RECA_GUI_BUSOBJ_F4_FOR_OBJTYPE' EXPORTING id_objtype = ld_objtype_sel if_multi_selection = lf_multiple_choice IMPORTING ed_objnr = ld_objnr et_objnr = lt_objnr EXCEPTIONS objtype_not_valid = 1 not_in_valid_period = 2 OTHERS = 3.
DYNP_VALUES_UPDATE CALL FUNCTION 'DYNP_VALUES_UPDATE' EXPORTING dyname = sy-cprog dynumb = sy-dynnr TABLES dynpfields = lt_dynpread EXCEPTIONS OTHERS = 0.
DYNP_GET_STEPL CALL FUNCTION 'DYNP_GET_STEPL' IMPORTING povstepl = ld_stepl EXCEPTIONS OTHERS = 0.
DYNP_VALUES_UPDATE CALL FUNCTION 'DYNP_VALUES_UPDATE' EXPORTING dyname = sy-cprog dynumb = sy-dynnr TABLES dynpfields = lt_dynpread EXCEPTIONS OTHERS = 0.
F4IF_FIELD_VALUE_REQUEST CALL FUNCTION 'F4IF_FIELD_VALUE_REQUEST' EXPORTING tabname = 'REIT_TC_ASSIGN_S' fieldname = 'GLACCOUNT' TABLES return_tab = lt_ret_tab EXCEPTIONS field_not_found = 1 no_help_for_field = 2 inconsistent_help = 3 no_values_found = 4 OTHERS = 5.
VRM_SET_VALUES CALL FUNCTION 'VRM_SET_VALUES' EXPORTING id = 'P_ACT' values = lt_value EXCEPTIONS id_illegal_name = 1 OTHERS = 2.
FI_DOCUMENT_READ CALL FUNCTION 'FI_DOCUMENT_READ' EXPORTING i_awtyp = id_awtyp i_awref = ld_awref i_aworg = ld_aworg TABLES t_bkpf = et_bkpf t_acchd = lt_acchd t_accit = et_accit EXCEPTIONS wrong_input = 1 not_found = 2 OTHERS = 3.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.