SAP Reports / Programs

RFFMCDS1 SAP ABAP Report - Display Change Documents for Funds Centers in FM Area







RFFMCDS1 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 the change document entries in chronological order for one, several or all document line items...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 RFFMCDS1 into the relevant SAP transactions such as SE38 or SE80


ABAP code to call this SAP report using the submit statement

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.






SUBMIT RFFMCDS1. "Basic submit
SUBMIT RFFMCDS1 AND RETURN. "Return to original report after report execution complete
SUBMIT RFFMCDS1 VIA SELECTION-SCREEN. "Display selection screen of submitted report to user
    See more syntax options for the ABAP SUBMIT statement


Text pool values


Selection Text: P_FIKRS = D FM Area
Selection Text: S_DATUM = Changed On
Selection Text: S_FICTR = D Funds Center
Selection Text: S_USER = D Name
Selection Text: S_ZEIT = D Time
Title: Display Change Documents for Funds Centers in FM Area


INCLUDES used within this REPORT RFFMCDS1

No INCLUDES are used within this REPORT code!


TABLES used within REPORT and the associated SELECT statement:





No SAP DATABASE tables are accessed within this REPORT code!


Function Modules used within report and the associated call statement:

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.

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.



Contribute (Add Comments)

Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.







The contribute/comments section below therefore offer's an opportunity for anyone to add additional information. This can be anything from useful hints, tips and screen shots to relevant SAP notes or anything else you feel is relevant to this report.

This will then be available for everyone to easily find by simply searching on the report name RFFMCDS1 or its description.