DELETE_FUNC_INCLUDE is a standard Executable ABAP Report 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 DELETE_FUNC_INCLUDE 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.
Selection Text: INCLUDE = Include Name
Selection Text: TRANSP = Transport Entry (R3TR FUGR)
Title: Deletes a U-include
Text Symbol: 001 = Include was deleted!
Text Symbol: 002 = Delete Include
Text Symbol: 003 = Delete
REPORT DELETE_FUNC_INCLUDE.
REPORT DELETE_FUNC_INCLUDE.
DELETE REPORT INCLUDE STATE 'A'.
DELETE REPORT INCLUDE STATE 'I'.
DELETE REPORT DINCLUDE STATE 'A'.
DELETE REPORT DINCLUDE STATE 'I'.
DELETE REPORT VINCLUDE STATE 'A'.
DELETE REPORT VINCLUDE STATE 'I'.
No SAP DATABASE tables are accessed within this REPORT code!
TR_SYS_PARAMS call function 'TR_SYS_PARAMS' importing systemedit = systemedit sys_cliinddep_edit = sys_cliinddep_edit exceptions others = 1.
FUNCTION_INCLUDE_SPLIT call function 'FUNCTION_INCLUDE_SPLIT' importing namespace = namespace group = group no_function_include = no_func_incl no_function_module = no_func reserved_name = reserved changing include = include exceptions include_not_exists = 1 group_not_exists = 2 no_selections = 3 no_function_include = 4 no_function_pool = 5 delimiter_wrong_position = 6 no_customer_function_group = 7 no_customer_function_include = 8 reserved_name_customer = 9 namespace_too_long = 10 area_length_error = 11 others = 12.
POPUP_TO_CONFIRM_STEP call function 'POPUP_TO_CONFIRM_STEP' exporting defaultoption = 'N' textline1 = text-002 textline2 = include titel = text-003 importing answer = answer.
RS_CORR_INSERT call function 'RS_CORR_INSERT' exporting global_lock = 'X' object = group object_class = l_class exceptions cancelled = 01 permission_failure = 02.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.