RDDTDDAT_BCE_PRINT 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 RDDTDDAT_BCE_PRINT 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!
SAIS_SHOW_SELECTION_SCREEN CALL FUNCTION 'SAIS_SHOW_SELECTION_SCREEN' EXPORTING REPORT = sy-repid MODE = 'S' TABLES SELSCR = lt_selscreen EXCEPTIONS OTHERS = 0.
REUSE_ALV_LIST_DISPLAY CALL FUNCTION 'REUSE_ALV_LIST_DISPLAY' EXPORTING i_callback_program = lv_report i_callback_pf_status_set = 'HANDLE_EVENT_PF_STATUS' i_callback_user_command = 'HANDLE_EVENT_USER_COMMAND' is_layout = ls_layo it_fieldcat = lt_fcat * it_excluding = lt_excl_func it_events = lt_events is_print = ls_prnt TABLES t_outtab = lt_selscreen EXCEPTIONS others = 0.
REUSE_ALV_LIST_DISPLAY CALL FUNCTION 'REUSE_ALV_LIST_DISPLAY' EXPORTING i_callback_program = lv_report i_callback_pf_status_set = 'HANDLE_EVENT_PF_STATUS' i_callback_user_command = 'HANDLE_EVENT_USER_COMMAND' is_layout = ls_layo it_fieldcat = lt_fcat it_events = lt_events is_print = ls_prnt TABLES t_outtab = gt_result EXCEPTIONS others = 0.
REUSE_ALV_LIST_DISPLAY CALL FUNCTION 'REUSE_ALV_LIST_DISPLAY' EXPORTING i_callback_program = lv_report is_layout = ls_layo it_fieldcat = lt_fcat it_events = lt_events is_print = ls_prnt TABLES t_outtab = lt_statist EXCEPTIONS others = 0.
REUSE_ALV_FIELDCATALOG_MERGE call function 'REUSE_ALV_FIELDCATALOG_MERGE' EXPORTING i_structure_name = 'TVARV' CHANGING ct_fieldcat = pt_fcat EXCEPTIONS inconsistent_interface = 1 program_error = 2 others = 3.
REUSE_ALV_FIELDCATALOG_MERGE call function 'REUSE_ALV_FIELDCATALOG_MERGE' EXPORTING i_structure_name = 'SAIS_S_RDDTDDAT_SALV' CHANGING ct_fieldcat = pt_fcat EXCEPTIONS inconsistent_interface = 1 program_error = 2 others = 3.
REUSE_ALV_FIELDCATALOG_MERGE call function 'REUSE_ALV_FIELDCATALOG_MERGE' EXPORTING i_structure_name = 'SAIS_S_RUNTIME_STATISTICS' CHANGING ct_fieldcat = pt_fcat EXCEPTIONS inconsistent_interface = 1 program_error = 2 others = 3.
TH_SERVER_LIST CALL FUNCTION 'TH_SERVER_LIST' TABLES LIST = lt_server_list EXCEPTIONS OTHERS = 0.
TH_GET_PROFILE_VALUE CALL FUNCTION 'TH_GET_PROFILE_VALUE' EXPORTING NAME = 'rec/client' "#EC NOTEXT SERVER =
-name IMPORTING VALUE = lv_value 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.