RKLEXCEEDEDLIMITDELETE 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 RKLEXCEEDEDLIMITDELETE into the relevant SAP transactions such as SE38 or SE80
Below is a list of transaction codes which are relevant to this SAP report
KLLE_DELETE - Deletion of Exceeded Limits
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.
Selection Text: S_FHAART = Transaction Type
Selection Text: S_SGSART = Product Type
Selection Text: S_SLA = Limit Type
Selection Text: S_USER = User
Selection Text: TAB_FO = Financial Object
Title: Deletion of Exceeded Limits
Text Symbol: 001 = Selection Data
Text Symbol: 002 = No. of Records Deleted:
Text Symbol: 003 = Deletion Date
Text Symbol: 011 = Deletion of Exceeded Limits
INCLUDE RKLEXCEEDEDLIMITDELETETOP.
No SAP DATABASE tables are accessed within this REPORT code!
ISB_DPROT_NAME_GET CALL FUNCTION 'ISB_DPROT_NAME_GET' EXPORTING p_prlev = '4' protid = 'KLD' EXCEPTIONS OTHERS = 2.
ISB_DPROT_OPEN_NEW CALL FUNCTION 'ISB_DPROT_OPEN_NEW' EXCEPTIONS OTHERS = 1.
ISB_PROT_ITAB_WRITE CALL FUNCTION 'ISB_PROT_ITAB_WRITE' EXPORTING level = '1' s1 = text-011 s2 = space s3 = space s4 = space no = space EXCEPTIONS OTHERS = 1.
ISB_PROT_ITAB_WRITE CALL FUNCTION 'ISB_PROT_ITAB_WRITE' EXPORTING level = '1' s1 = text-003 s2 = l_datum s3 = space s4 = space no = space EXCEPTIONS OTHERS = 1.
ISB_PROT_ITAB_WRITE CALL FUNCTION 'ISB_PROT_ITAB_WRITE' EXPORTING level = '1' s1 = text-002 s2 = l_anzahl s3 = space s4 = space no = space EXCEPTIONS OTHERS = 1.
ISB_DPROT_CLOSE CALL FUNCTION 'ISB_DPROT_CLOSE' EXCEPTIONS OTHERS = 1.
DB_COMMIT CALL FUNCTION 'DB_COMMIT'.
ISB_DPROT_SHOW CALL FUNCTION 'ISB_DPROT_SHOW' EXCEPTIONS OTHERS = 1.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.