MASDELF01 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 MASDELF01 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: Form Routine for Report RKMASDEL
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
MESSAGE_TEXTS_READ call function 'MESSAGE_TEXTS_READ' exporting msg_log_imp = ls_msg_log importing msg_text_exp = ls_msg_text.
K_KOKRS_READ call function 'K_KOKRS_READ' exporting kokrs = kokrs importing e_tka01 = gs_tka01.
READ_COSTCENTER_TEXT call function 'READ_COSTCENTER_TEXT' exporting datum = date kokrs = kokrs kostl = ld_kostl sprache = sy-langu importing text = object_text exceptions text_not_found = 0.
READ_COSTELEMENT_TEXT call function 'READ_COSTELEMENT_TEXT' exporting kstar = ld_kstar ktopl = gs_tka01-ktopl sprache = sy-langu importing text = object_text exceptions text_not_found = 0.
READ_ACTIVITY_TEXT call function 'READ_ACTIVITY_TEXT' exporting datum = date kokrs = kokrs lstar = ld_lstar sprache = sy-langu importing text = object_text exceptions text_not_found = 0.
K_BUSINESS_PROCESS_TEXT_READ call function 'K_BUSINESS_PROCESS_TEXT_READ' exporting datum = date kokrs = kokrs prznr = ld_prznr spras = sy-langu importing ktext = object_text exceptions not_found = 0.
REUSE_ALV_BLOCK_LIST_INIT call function 'REUSE_ALV_BLOCK_LIST_INIT' exporting i_callback_program = 'RKMASDEL'.
REUSE_ALV_BLOCK_LIST_APPEND call function 'REUSE_ALV_BLOCK_LIST_APPEND' exporting is_layout = gs_layout it_fieldcat = gt_fieldcat i_tabname = 'GT_DELETED_OBJECTS' it_events = lt_events tables t_outtab = gt_deleted_objects exceptions others = 0.
REUSE_ALV_BLOCK_LIST_APPEND call function 'REUSE_ALV_BLOCK_LIST_APPEND' exporting is_layout = gs_layout it_fieldcat = gt_fieldcat i_tabname = 'GT_OBJECTS_NOT_DELETED' it_events = lt_events tables t_outtab = gt_objects_not_deleted exceptions others = 0.
REUSE_ALV_BLOCK_LIST_DISPLAY call function 'REUSE_ALV_BLOCK_LIST_DISPLAY' exceptions others = 0.
K_FIELD_TEXT_READ call function 'K_FIELD_TEXT_READ' exporting field = 'KOKRS' langu = sy-langu tab = 'TKA01' with_dots = ' ' importing ex_kdfit = ls_kdfit exceptions others = 0.
K_FIELD_TEXT_READ call function 'K_FIELD_TEXT_READ' exporting field = 'DATAB' langu = sy-langu tab = 'CSKS' with_dots = ' ' importing ex_kdfit = ls_kdfit exceptions others = 0.
K_FIELD_TEXT_READ call function 'K_FIELD_TEXT_READ' exporting field = 'DATBI' langu = sy-langu tab = 'CSKS' with_dots = ' ' importing ex_kdfit = ls_kdfit exceptions others = 0.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.