RFCCDLOG is a standard Executable ABAP Report available within your SAP system (depending on your version and release level). It is used for This program enables you to delete the logs belonging to old settlement runs...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 RFCCDLOG into the relevant SAP transactions such as SE38 or SE80
Below is a list of transaction codes which are relevant to this SAP report
WPCD - Delete settlement logs
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: SL_NSENT = Number of transfer attempts
Selection Text: SL_LNAME = User (final settlement run)
Selection Text: SL_LDATU = Date (final run)
Selection Text: SL_HKONT = G/L account
Selection Text: SL_FNAME = User (first settlement run)
Selection Text: SL_FDATU = Date (first run)
Selection Text: SL_BUKRS = Company Code
Selection Text: PR_XECHT = Update Run
Selection Text: PR_XDFAI = Delete incorr. settlemnt runs?
Selection Text: PR_XDETA = Detail Log
Selection Text: PR_FDATU = Delete logs older than
Title: Payment Cards: Delete Old Log Information
Text Symbol: 016 = User (Final Attempt)
Text Symbol: 015 = Date (Final Attempt)
Text Symbol: 014 = User (First Attempt)
Text Symbol: 013 = Date (First Attempt)
Text Symbol: 012 = Text
Text Symbol: 011 = Attempts
Text Symbol: 010 = Run
Text Symbol: 008 = Stop................
Text Symbol: 007 = Start...............
Text Symbol: 006 = User................
Text Symbol: 005 = Run |First run |Final run |Runs |Text
Text Symbol: 004 = Update Run
Text Symbol: 003 = Test Run
Text Symbol: 002 = Further Selections
Text Symbol: 001 = Del. Date
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
REUSE_ALV_EVENTS_GET CALL FUNCTION 'REUSE_ALV_EVENTS_GET' EXPORTING I_LIST_TYPE = 0 IMPORTING ET_EVENTS = XT_EVENTS.
REUSE_ALV_FIELDCATALOG_MERGE CALL FUNCTION 'REUSE_ALV_FIELDCATALOG_MERGE' "#EC * EXPORTING I_PROGRAM_NAME = G_REPID I_STRUCTURE_NAME = UV_STRUCTURE CHANGING CT_FIELDCAT = XT_FIELDCAT EXCEPTIONS INCONSISTENT_INTERFACE = 1 PROGRAM_ERROR = 2 OTHERS = 3.
REUSE_ALV_LIST_DISPLAY CALL FUNCTION 'REUSE_ALV_LIST_DISPLAY' "#EC * EXPORTING I_CALLBACK_PROGRAM = G_REPID * IS_LAYOUT = GS_LAYOUT IT_FIELDCAT = GT_FIELDCAT * IT_SORT = GT_SORT * I_SAVE = GC_SAVE * IS_VARIANT = G_VARIANT I_CALLBACK_PF_STATUS_SET = 'PF_STATUS' IT_EVENTS = GT_EVENTS
TABLES T_OUTTAB = GT_TCCLG EXCEPTIONS PROGRAM_ERROR = 1 OTHERS = 2 .
REUSE_ALV_COMMENTARY_WRITE CALL FUNCTION 'REUSE_ALV_COMMENTARY_WRITE' EXPORTING IT_LIST_COMMENTARY = GT_LIST_TOP_OF_PAGE * I_LOGO = * I_END_OF_LIST_GRID = .
REUSE_ALV_COMMENTARY_WRITE CALL FUNCTION 'REUSE_ALV_COMMENTARY_WRITE' EXPORTING IT_LIST_COMMENTARY = GT_LIST_END_OF_LIST * I_LOGO = * I_END_OF_LIST_GRID = .
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.