SAP Reports / Programs | Service | Solution Manager | Service Data Download(SV-SMG-SDD) SAP SV

BDLSEND SAP ABAP Report - Send report called by Service Data Control Center







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


ABAP code to call this SAP report using the submit statement

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.






SUBMIT BDLSEND. "Basic submit
SUBMIT BDLSEND AND RETURN. "Return to original report after report execution complete
SUBMIT BDLSEND VIA SELECTION-SCREEN. "Display selection screen of submitted report to user
    See more syntax options for the ABAP SUBMIT statement


Text pool values


Title: Send report called by Service Data Control Center


INCLUDES used within this REPORT BDLSEND

INCLUDE BDLMSGLG.


TABLES used within REPORT and the associated SELECT statement:





No SAP DATABASE tables are accessed within this REPORT code!


Function Modules used within report and the associated call statement:

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.



Contribute (Add Comments)

Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.







The contribute/comments section below therefore offer's an opportunity for anyone to add additional information. This can be anything from useful hints, tips and screen shots to relevant SAP notes or anything else you feel is relevant to this report.

This will then be available for everyone to easily find by simply searching on the report name BDLSEND or its description.