SAP Reports / Programs

BTFR_DELETE_WHERE_USED SAP ABAP Report - OTR: Deletion of Concepts Not Used







BTFR_DELETE_WHERE_USED is a standard Executable ABAP Report available within your SAP system (depending on your version and release level). It is used for where-used list (tables SOTR_USE and SOTR_USEU)...see full standard documentation available for this report. Also check out the submitted Comments related to this SAP report and the details below to see which OBJECTS it interacts with such as TABLES, FUNCTION MODULES, INCLUDES ETC.

If you would like to execute this report or see the full code listing simply enter BTFR_DELETE_WHERE_USED 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 BTFR_DELETE_WHERE_USED. "Basic submit
SUBMIT BTFR_DELETE_WHERE_USED AND RETURN. "Return to original report after report execution complete
SUBMIT BTFR_DELETE_WHERE_USED VIA SELECTION-SCREEN. "Display selection screen of submitted report to user
    See more syntax options for the ABAP SUBMIT statement


Text pool values


Selection Text: P_APPL = Application
Selection Text: P_REPAIR = Production Mode
Selection Text: P_STRING = Long Text
Selection Text: P_TEST = Test Mode
Selection Text: P_TEXT = Description
Title: OTR: Deletion of Concepts Not Used
Text Symbol: 001 = Usages Without Headers
Text Symbol: 003 = Error in the list output
Text Symbol: 004 = Technical Control
Text Symbol: 005 = Selection
Text Symbol: 006 = Text Type
Text Symbol: 008 = Are you sure you want to delete the displayed entries now?
Text Symbol: 010 = Selecting data...
Text Symbol: 011 = Yes
Text Symbol: 012 = No


INCLUDES used within this REPORT BTFR_DELETE_WHERE_USED

No INCLUDES are used within this REPORT code!


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:

SAPGUI_PROGRESS_INDICATOR CALL FUNCTION 'SAPGUI_PROGRESS_INDICATOR' EXPORTING text = 'Daten werden selektiert...'(010).

POPUP_TO_CONFIRM CALL FUNCTION 'POPUP_TO_CONFIRM' EXPORTING titlebar = ' ' text_question = text-008 text_button_1 = 'Ja'(011) text_button_2 = 'Nein'(012) IMPORTING answer = answer.

SOTR_USAGE_DELETE CALL FUNCTION 'SOTR_USAGE_DELETE' EXPORTING sotr_usage = use_delete.

SOTR_USAGE_STRING_DELETE CALL FUNCTION 'SOTR_USAGE_STRING_DELETE' EXPORTING sotr_usage = useu_delete.

REUSE_ALV_GRID_DISPLAY CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY' EXPORTING i_callback_program = sy-repid i_structure_name = 'SOTR_USE' i_grid_title = l_title it_fieldcat = l_fieldcat is_layout = l_layout TABLES t_outtab = p_use_del EXCEPTIONS program_error = 1 OTHERS = 2.

REUSE_ALV_GRID_DISPLAY CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY' EXPORTING i_callback_program = sy-repid i_structure_name = 'SOTR_USEU' i_grid_title = l_title it_fieldcat = l_fieldcat is_layout = l_layout TABLES t_outtab = p_useu_del EXCEPTIONS program_error = 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 BTFR_DELETE_WHERE_USED or its description.