ECATT_MASS_DELETE_F01 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 ECATT_MASS_DELETE_F01 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.
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
ECATT_GET_LINKED_OBJECTS CALL FUNCTION 'ECATT_GET_LINKED_OBJECTS' EXPORTING im_do_not_search_docu = 'X' TABLES im_ecatt_obj_list = ecatt_obj_list ex_tr_obj_list = tr_obj_list.
RS_EU_CROSSREF CALL FUNCTION 'RS_EU_CROSSREF' EXPORTING i_find_obj_cls = l_find_obj_cls * I_SCOPE_OBJ_CLS = ' ' * REKURSIV = ' ' * I_ANSWER = ' ' * I_ACTUAL_INCLUDE = ' ' no_dialog = 'X' * EXPAND_SOURCE_IN_BATCH_MODE = 'X' * EXPAND_SOURCE_IN_ONLINE_MODE = ' ' * WITHOUT_TEXT = ' ' * IMPORTING * O_SCOPE_OBJ_CLS = * O_ANSWER = TABLES i_findstrings = lt_find o_founds = lt_founds * O_FINDSTRINGS = * I_SCOPE_OBJECTS = * I_ACTUAL_SOURCE = * I_SCOPE_OBJECT_CLS = * I_SCOPE_DEVCLASS = * I_EXCLUDE_SCOPE_OBJECT_CLS = EXCEPTIONS not_executed = 1 not_found = 2 illegal_object = 3 no_cross_for_this_object = 4 batch = 5 batchjob_error = 6 wrong_type = 7 object_not_exist = 8 OTHERS = 9 .
ECATT_EXISTENCE_CHECK CALL FUNCTION 'ECATT_EXISTENCE_CHECK' EXPORTING im_object_name = object_name * IM_OBJECT_VERSION = 1 im_object_type = object_type im_exists_any_version = 'X' * IM_VARIANT_ID = IMPORTING ex_exists = exists * EXCEPTIONS * OBJECT_TYPE_UNKNOWN = 1 * OPERATION_NOT_SUPPORTED = 2 * OBJECT_NOT_FOUND_FOR_VARIANT = 3 * OTHERS = 4 .
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.