RFFCRCCD 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 RFFCRCCD 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: S_NAME = Change User
Selection Text: S_FELD = Field name
Selection Text: S_DATE = Changed on
Selection Text: S_CCNUM = Card number
Selection Text: S_CCINS = Card type
Title: Payment Card Master Record: Display Change Documents
Text Symbol: 005 = Date
Text Symbol: 006 = Time
Text Symbol: 007 = Changed By
Text Symbol: 010 = Long text change
Text Symbol: 011 = Change
Text Symbol: 012 = Long text deleted
Text Symbol: 013 = Deletion
Text Symbol: 014 = Long text entered
Text Symbol: 015 = Entry
Text Symbol: 018 = Card number
Text Symbol: 019 = Acct asst item
Text Symbol: 021 = Field name
Text Symbol: 022 = Old value
Text Symbol: 023 = New value
Text Symbol: 024 = Deleted By:
Text Symbol: 025 = Created by:
Text Symbol: 030 = Field text
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
CHANGEDOCUMENT_READ CALL FUNCTION 'CHANGEDOCUMENT_READ' EXPORTING date_of_change = l_t_cdhdr-udate objectclass = objekt objectid = l_t_cdhdr-objectid TABLES editpos = l_t_change_documents.
REUSE_ALV_HIERSEQ_LIST_DISPLAY CALL FUNCTION 'REUSE_ALV_HIERSEQ_LIST_DISPLAY' EXPORTING i_callback_program = gv_repid it_fieldcat = gt_changedoc_fieldcat it_events = lt_events i_callback_pf_status_set = gc_set_pf_status i_callback_user_command = gc_handle_event_user_command i_tabname_header = gc_tabname1 i_tabname_item = gc_tabname2 is_keyinfo = gs_keyinfo TABLES t_outtab_header = gt_changedoc_header t_outtab_item = gt_changedoc_item.
REUSE_ALV_FIELDCATALOG_MERGE CALL FUNCTION 'REUSE_ALV_FIELDCATALOG_MERGE' "#EC * EXPORTING i_program_name = gv_repid i_structure_name = gc_structure2 CHANGING ct_fieldcat = gt_changedoc_fieldcat EXCEPTIONS inconsistent_interface = 1 program_error = 2 OTHERS = 3.
REUSE_ALV_FIELDCATALOG_MERGE CALL FUNCTION 'REUSE_ALV_FIELDCATALOG_MERGE' "#EC * EXPORTING i_program_name = gv_repid i_structure_name = gc_structure1 CHANGING ct_fieldcat = gt_changedoc_fieldcat EXCEPTIONS inconsistent_interface = 1 program_error = 2 OTHERS = 3.
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' EXPORTING i_program_name = gv_repid i_structure_name = gc_structure1 CHANGING ct_fieldcat = gt_details_fieldcat EXCEPTIONS inconsistent_interface = 1 program_error = 2 OTHERS = 3.
REUSE_ALV_LIST_DISPLAY CALL FUNCTION 'REUSE_ALV_LIST_DISPLAY' EXPORTING i_callback_program = gv_repid i_callback_pf_status_set = gc_set_pf_status1 it_fieldcat = gt_details_fieldcat TABLES t_outtab = gt_details EXCEPTIONS program_error = 1 OTHERS = 2.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.