RFINTITDEL is a standard Executable ABAP Report available within your SAP system (depending on your version and release level). It is used for Program for deleting the interest tables INTITHE, INTITIT, and INTITPF...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 RFINTITDEL into the relevant SAP transactions such as SE38 or SE80
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: A_ACCNT = Business Partner
Selection Text: A_ALL = Delete from All Tables
Selection Text: A_BUKRS = Company Code
Selection Text: A_FIRST = Interest Calc. Start before
Selection Text: A_ITEMS = Only Delete from Item Tables
Selection Text: A_KOART = Account Type
Title: Deletion of Interest Information
Text Symbol: 001 = This program deletes data from the database tables
Text Symbol: 002 = INTITIT, INTITPF and INTITHE.
Text Symbol: 003 = Do you really want to continue?
Text Symbol: 004 = Delete from InterestTab.
Text Symbol: 005 = INTITIT and INTITPF.
Text Symbol: 010 = Deletion Parameters
Text Symbol: 020 = Account
Text Symbol: 030 = Company Code
Text Symbol: 040 = Start Date
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
POPUP_TO_CONFIRM_WITH_MESSAGE call function 'POPUP_TO_CONFIRM_WITH_MESSAGE' exporting defaultoption = 'N' diagnosetext1 = dtxt1 diagnosetext2 = dtxt2 textline1 = txt1 titel = title importing answer = ld_answer.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.