FUNCTION z_util_src_without_includes. *"---------------------------------------------------------------------- *"*"Lokale Schnittstelle: *" IMPORTING *" REFERENCE(IT_SRC) TYPE ZUTIL_SRC_TT *" REFERENCE(I_SRC_NAME) TYPE ZUTIL_SRC_NAME *" REFERENCE(I_CHECK) TYPE ZUTIL_GLOBAL_CHECK DEFAULT ABAP_FALSE *" REFERENCE(I_PROGNAME) TYPE ZUTIL_GLOBAL_PROGRAM DEFAULT SPACE *" REFERENCE(I_REPLACE) TYPE ZUTIL_REPLACING_SRC OPTIONAL *" EXPORTING *" REFERENCE(ET_SRC_NO_INCLUDES) TYPE ZUTIL_SRC_NO_INCLUDES_TT *" REFERENCE(ET_INDEX) TYPE ZUTIL_SRC_INCLUDE_INDEX_TT *"---------------------------------------------------------------------- *&---------------------------------------------------------------------* *& Function Module Z_UTIL_SRC_WITHOUT_INCLUDES * *& * *&---------------------------------------------------------------------* *& * *& This program is free software: you can redistribute it and/or * *& modify it under the terms of the GNU General Public License as * *& published by the Free Software Foundation, either version 3 of the * *& License, or any later version. * *& * *& This program is distributed in the hope that it will be useful, * *& but WITHOUT ANY WARRANTY; without even the implied warranty of * *& MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. * *& See the GNU General Public License for more details. * *& * *& You should have received a copy of the GNU General Public License * *& along with this program. If not, see .* *& * *&---------------------------------------------------------------------* *& * *& Author: Ruediger von Creytz ruediger.creytz@globalbit.net * *& Copyright: globalBIT, LLC http://www.globalbit.net * *& Version: 20210302 * *& * *&---------------------------------------------------------------------* REFRESH: et_src_no_includes, et_index. PERFORM get_src_without_includes USING it_src i_src_name i_check i_progname i_replace CHANGING et_src_no_includes et_index. ENDFUNCTION.