SAP Reports / Programs

/LIME/BACKGROUND_DELETE_EXEC SAP ABAP Report - Delete Obsolete Table Entries







/LIME/BACKGROUND_DELETE_EXEC is a standard Executable ABAP Report available within your SAP system (depending on your version and release level). It is used for This program deletes obsolete table entries in the index tables and in the quantities table /LIME/QUAN...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 /LIME/BACKGROUND_DELETE_EXEC 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 /LIME/BACKGROUND_DELETE_EXEC. "Basic submit
SUBMIT /LIME/BACKGROUND_DELETE_EXEC AND RETURN. "Return to original report after report execution complete
SUBMIT /LIME/BACKGROUND_DELETE_EXEC 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: SO_IDX_S = Stock Index Tables
Selection Text: SO_IDX_L = Location Index Tables
Selection Text: SO_IDX_H = HU Index Tables
Selection Text: P_TYP_S = Delete STOCK Index Entries
Selection Text: P_TYP_L = Delete LOC Index Entries
Selection Text: P_TYP_H = Delete HU Index Entries
Selection Text: P_QUAN = Zero Quantities
Selection Text: P_PSIZE = Package Size
Selection Text: P_EXDOC = External Document Number
Selection Text: P_DEPTH = Maximum Hierarchy Depth
Title: Delete Obsolete Table Entries
Text Symbol: S07 = Ext.Document Number
Text Symbol: S06 = Pack. Size
Text Symbol: S05 = Maximum Hierarchy Depth
Text Symbol: S04 = Frm
Text Symbol: S03 = Location Index
Text Symbol: S02 = Handling Unit Index
Text Symbol: S01 = Stock Indices
Text Symbol: F04 = Documents
Text Symbol: F03 = Processing Control
Text Symbol: F02 = Step 2: Delete Index Table Entries
Text Symbol: F01 = Step 1: Delete Quantities


INCLUDES used within this REPORT /LIME/BACKGROUND_DELETE_EXEC

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:

/LIME/BACKGROUND_DELETE_EXEC CALL FUNCTION '/LIME/BACKGROUND_DELETE_EXEC' EXPORTING i_quan = p_quan i_depth = p_depth i_psize = p_psize i_exdoc = p_exdoc IMPORTING et_bapiret = lt_bapiret e_severity = l_severity.

/LIME/BACKGROUND_DELETE_EXEC CALL FUNCTION '/LIME/BACKGROUND_DELETE_EXEC' EXPORTING i_typ_s = p_typ_s it_idx_s = lt_r_idx_s i_psize = p_psize i_exdoc = p_exdoc IMPORTING et_bapiret = lt_bapiret e_severity = l_severity.

/LIME/BACKGROUND_DELETE_EXEC CALL FUNCTION '/LIME/BACKGROUND_DELETE_EXEC' EXPORTING i_typ_h = p_typ_h it_idx_h = lt_r_idx_h i_psize = p_psize i_exdoc = p_exdoc IMPORTING et_bapiret = lt_bapiret e_severity = l_severity.

/LIME/BACKGROUND_DELETE_EXEC CALL FUNCTION '/LIME/BACKGROUND_DELETE_EXEC' EXPORTING i_typ_l = p_typ_l it_idx_l = lt_r_idx_l i_psize = p_psize i_exdoc = p_exdoc IMPORTING et_bapiret = lt_bapiret e_severity = l_severity.

SAPGUI_PROGRESS_INDICATOR CALL FUNCTION 'SAPGUI_PROGRESS_INDICATOR' EXPORTING text = i_message.



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 /LIME/BACKGROUND_DELETE_EXEC or its description.