RFFMCDCI is a standard Executable ABAP Report available within your SAP system (depending on your version and release level). It is used for The program lists for one, several or all line items, the change document entries chronologically...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 RFFMCDCI 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: P_FIKRS = FM area
Selection Text: P_GJAHR = Fiscal year
Selection Text: P_VARNT = Plan variant
Selection Text: S_DATUM = Changed on
Selection Text: S_FIPEX = Commitment item
Selection Text: S_USER = Change User
Selection Text: S_ZEIT = Changed at
Title: Display Change Documents for Commitment Items in FM Area
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 objectclass = u_t_cdhdr-objectclas objectid = u_t_cdhdr-objectid TABLES editpos = c_t_cdred EXCEPTIONS no_position_found = 1 OTHERS = 2.
BUS_CHANGE_DOCUMENT CALL FUNCTION 'BUS_CHANGE_DOCUMENT' EXPORTING i_objap = 'FGDT' "Generic Application i_popup = '2' "Note 1493545 TABLES t_udate = l_t_udate t_uname = l_t_uname t_objectid = l_t_objectid t_tabkey = l_t_tabkey EXCEPTIONS not_found = 1 OTHERS = 2.
FM_MD_GJAHR_GET_FROM_FIKRS CALL FUNCTION 'FM_MD_GJAHR_GET_FROM_FIKRS' EXPORTING i_fikrs = p_fikrs i_gjahr = p_gjahr i_flg_pos = 'X' IMPORTING e_gjahr_pos = p_gjahr.
CHANGEDOCUMENT_READ CALL FUNCTION 'CHANGEDOCUMENT_READ' EXPORTING changenumber = u_t_cdhdr-changenr objectclass = u_t_cdhdr-objectclas objectid = u_t_cdhdr-objectid tablekey = u_t_cdpos-tabkey TABLES editpos = l_t_cdred EXCEPTIONS no_position_found = 1 OTHERS = 2.
BDT_CLASS_INIT CALL FUNCTION 'BDT_CLASS_INIT'.
BDT_INSTANCE_CREATE CALL FUNCTION 'BDT_INSTANCE_CREATE' EXPORTING iv_objap = gc_bdt_fgdt iv_message_mode = gc_di IMPORTING ev_handle = gv_handle ev_message_severity = lv_max_msg TABLES et_message = lt_message EXCEPTIONS primary_instance_not_found = 1 no_objap_expected = 2.
BDT_INSTANCE_ATTRIBUTES_SET CALL FUNCTION 'BDT_INSTANCE_ATTRIBUTES_SET' EXPORTING iv_handle = gv_handle iv_aktyp = gc_aktyp_display iv_display_mode = gc_display_mode iv_message_mode_dchck = gc_overlap_check iv_xupdtask = space EXCEPTIONS handle_not_found = 0.
BDT_FUNCTION_NAVIGATE CALL FUNCTION 'BDT_FUNCTION_NAVIGATE' EXPORTING iv_handle = gv_handle iv_screen_type = 'T' iv_screen_posnr = '0000001' EXCEPTIONS handle_not_found = 1 illegal_screen_type = 2 illegal_posnr = 3 first_data_screen = 4 last_data_screen = 5 screen_not_found = 6 screentype_not_active = 7 general_error = 8.
BDT_MEMORY_GLOBAL_REFRESH CALL FUNCTION 'BDT_MEMORY_GLOBAL_REFRESH' EXPORTING iv_handle = gv_handle IMPORTING ev_message_severity = lv_max_msg TABLES et_message = lt_message EXCEPTIONS handle_not_found = 1.
BDT_INSTANCE_DESTROY CALL FUNCTION 'BDT_INSTANCE_DESTROY' EXPORTING iv_handle = gv_handle.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.
RFFMCDCI - Display Change Documents for Commitment Items in FM Area RFFMCDCI - Display Change Documents for Commitment Items in FM Area RFFMCC_REPORT01 - Consistency Check Report RFFMCC_REPORT01 - Consistency Check Report RFFMCCRVENDOR_SYNCHRONIZE_TOP - Include RFFMCCRVENDOR_SYNCHRONIZE_TOP RFFMCCRVENDOR_SYNCHRONIZE_SF01 - Include RFFMCCRVENDOR_SYNCHRONIZE_SF01