BDLCOLL 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 BDLCOLL 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: Collect report called by Service Data Control Center
INCLUDE BDLMSGLG.
No SAP DATABASE tables are accessed within this REPORT code!
BDL_CHECK_FOR_RUNNING_BATCHJOB CALL FUNCTION 'BDL_CHECK_FOR_RUNNING_BATCHJOB' EXPORTING session_number = sessnr IMPORTING other_job_is_running = other_job_is_running EXCEPTIONS OTHERS = 1.
EVALUATE_BDL_TABLES CALL FUNCTION 'EVALUATE_BDL_TABLES' EXPORTING contract = session-contract descr = session-descriptio IMPORTING servicetype = servicetype TABLES to_do_fugroups = to_do_fugroups EXCEPTIONS no_valid_service = 1.
SYSTEM_FORMAT CALL FUNCTION 'SYSTEM_FORMAT' IMPORTING codep = codepage EXCEPTIONS OTHERS = 1.
BDL_GENERATE_REPORTS CALL FUNCTION 'BDL_GENERATE_REPORTS' EXPORTING session = session servicetype = servicetype sy_datum = sy_datum TABLES to_do_fugroups = to_do_fugroups addon = addon EXCEPTIONS lock_failed = 1.
BDL_UPDATE_ADDON_DIRECTORY CALL FUNCTION 'BDL_UPDATE_ADDON_DIRECTORY' EXPORTING session = session TABLES addonkey_table = addon EXCEPTIONS no_data_found = 1 OTHERS = 2.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.