BDLSEND 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 BDLSEND 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: Send 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.
BDL_GET_RFC_DESTINATIONS CALL FUNCTION 'BDL_GET_RFC_DESTINATIONS' EXPORTING SESSION_NUMBER = sessnr SESSION_CLIENT = mandant TABLES RFCDEST = rfc_destination EXCEPTIONS DEST_NOT_FOUND = 1 OTHERS = 2.
BDL_GET_MAPPING_INFORMATION CALL FUNCTION 'BDL_GET_MAPPING_INFORMATION' EXPORTING ORIGINAL_SESSNO = rfc_destination-sessno ORIGINAL_CLIENT = rfc_destination-client SOURCE_DEST = rfc_destination-sourcedest TARGET_DEST = rfc_destination-targetdest SESSION_TYPE = rfc_destination-type EXCEPTIONS SESSION_UNKNOWN = 1 SESSION_TYPE_UNKNOWN = 2 MAPPING_NOT_NEEDED = 3 MAPPING_TO_BE_AVOIDED = 4 MAPPED_SESSION_ILLEGAL = 5 NO_MAPPING = 6 SPURIOUS_MAPPING = 7 OTHERS = 8.
BDL_CHECK_FOR_DESTINATION CALL FUNCTION 'BDL_CHECK_FOR_DESTINATION' Changing DESTINATION = RFCDEST EXCEPTIONS RFCDEST_MISSING = 91 PING_FAILED = 92 OTHERS = 93.
BDL_SEND_DATA CALL FUNCTION 'BDL_SEND_DATA' EXPORTING DESTINATION = RFCDEST TO_SEND_SESSIONNR = rfc_destination-sessno TO_SEND_MANDANT = rfc_destination-client MAPTO_SESSIONNR = rfc_destination-mapsessno MAPTO_MANDANT = rfc_destination-mapclient FORCE_SEND = force NO_MSG_LOGGING = NO_MSG IMPORTING RCODE = RETCODE EXCEPTIONS NO_DATA_FOUND = 1 WRONG_PARAMETERS = 2 OTHERS = 3.
BDL_TRANSMIT_DATA CALL FUNCTION 'BDL_TRANSMIT_DATA' EXPORTING SESSNO = rfc_destination-sessno MANDANT = rfc_destination-client MAPTO_SESSNO = rfc_destination-mapsessno MAPTO_MANDANT = rfc_destination-mapclient FORCE_SEND = force NO_MSG_LOGGING = NO_MSG RFCDEST = rfcdest RFC_BLK_SIZE = rfc_destination-blksize * tables * SERVERLIST = EXCEPTIONS TRANSFER_INCOMPLETE = 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.
BDLSEND - Send report called by Service Data Control Center BDLSEND - Send report called by Service Data Control Center BDLSDDCC - documentation and ABAP source code BDLSDDCC - documentation and ABAP source code BDLSCOPY - documentation and ABAP source code BDLSAFILLTOP - Include containing forms to fill Global Variables in Service Assistent