RFCASH10 is a standard Executable ABAP Report available within your SAP system (depending on your version and release level). It is used for This program lists all of the deleted cash documents in the period selected...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 RFCASH10 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: BUKRS = Company code
Selection Text: CAJON = Cash journal
Selection Text: CJPER = Period
Selection Text: P_LVAR = List variant
Selection Text: TITLE = Additional heading
Title: Cash Journal: Deleted Documents
Text Symbol: 020 = Receipt amount
Text Symbol: 021 = Payment amnt
Text Symbol: 022 = Net amount
Text Symbol: 023 = Tax amount
Text Symbol: 024 = ID doc. number
Text Symbol: 025 = Cash journal doc.no.
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
FCJ_SHOW_DELETED_ENTRIES CALL FUNCTION 'FCJ_SHOW_DELETED_ENTRIES' EXPORTING I_DISPLAY_PERIOD_LO = CJPER-LOW I_DISPLAY_PERIOD_HI = CJPER-HIGH I_COMP_CODE = TCJ_C_JOURNALS-COMP_CODE I_CAJO_NUMBER = TCJ_C_JOURNALS-CAJO_NUMBER TABLES ITCJ_POSTINGS = XISCJ_POSTINGS.
REUSE_ALV_LIST_DISPLAY CALL FUNCTION 'REUSE_ALV_LIST_DISPLAY' EXPORTING I_CALLBACK_PROGRAM = G_REPID I_CALLBACK_PF_STATUS_SET = G_STATUS I_CALLBACK_USER_COMMAND = G_USER_COMMAND IT_SORT = GT_SORT[] I_SAVE = G_SAVE IS_VARIANT = G_VARIANT IS_LAYOUT = GS_LAYOUT IS_PRINT = GS_PRINT IT_FIELDCAT = GT_FIELDCAT[] IT_EVENTS = GT_EVENTS[] TABLES T_OUTTAB = YISCJ_POSTINGS.
REUSE_ALV_VARIANT_F4 CALL FUNCTION 'REUSE_ALV_VARIANT_F4' EXPORTING IS_VARIANT = I_VARIANT I_SAVE = 'A' IMPORTING E_EXIT = EXIT ES_VARIANT = E_VARIANT EXCEPTIONS PROGRAM_ERROR = 3 OTHERS = 3.
REUSE_ALV_FIELDCATALOG_MERGE CALL FUNCTION 'REUSE_ALV_FIELDCATALOG_MERGE' EXPORTING I_PROGRAM_NAME = G_REPID I_STRUCTURE_NAME = 'ISCJ_POSTINGS' CHANGING CT_FIELDCAT = LS_FIELDCAT[] EXCEPTIONS OTHERS = 7.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.