
Report RBDLSMAP_RESET is used to reset the table bdlshdr, bdlspos and bdlslog after BDLS. The report is useful to run if the first run of BDLS is terminated halfway.
The report can be executed via transaction code SE38. The source code from report RBDLSMAP_RESET can view as per below,
*&---------------------------------------------------------------------*
*& Report RBDLSMAP_RESET
*&
*&---------------------------------------------------------------------*
*&
*&
*&---------------------------------------------------------------------*
REPORT RBDLSMAP_RESET.
tables: bdlshdr, bdlspos, bdlslog.
select * from bdlshdr.
delete bdlshdr.
endselect.
select * from bdlspos.
delete bdlspos.
endselect.
select * from bdlslog.
delete bdlslog.
endselect.
You can use the “Test Run” option for testing purposes. Unchecked the “Test Run” and select the option “Delete Obsolete Program” for the commit execution.

The output of the execution will show you the status and entries for each of the related tables.


