SAP Reports / Programs

RFDM2000 SAP ABAP Report - Automatic Write-Off of Dispute Cases







RFDM2000 is a standard Executable ABAP Report available within your SAP system (depending on your version and release level). It is used for You use this program to write off open items for a dispute case automatically...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 RFDM2000 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 RFDM2000. "Basic submit
SUBMIT RFDM2000 AND RETURN. "Return to original report after report execution complete
SUBMIT RFDM2000 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_MODE = D Display Mode
Selection Text: S_GUIDS = GUIDs with Process Number
Title: Automatic Write-Off of Dispute Cases


INCLUDES used within this REPORT RFDM2000

INCLUDE RFDM2000_TOP.


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:

FDM_CASE_GET CALL FUNCTION 'FDM_CASE_GET' EXPORTING i_case_guid_loc = gs_guids-case_guid_loc * IMPORTING * ES_RETURN = CHANGING ct_attributes = gt_attributes.

FDM_UI_READ_ATTRIBS CALL FUNCTION 'FDM_UI_READ_ATTRIBS' IMPORTING e_attribs = gs_attributes_st TABLES t_attrib_table = gt_attributes.

FDM_LOCAL_GET_LAST_SEQNR CALL FUNCTION 'FDM_LOCAL_GET_LAST_SEQNR' EXPORTING i_case_guid_loc = gs_guids-case_guid_loc IMPORTING e_last_seqnr = g_seqnr.

FDM_CASE_ATTRIBUTES_SET CALL FUNCTION 'FDM_CASE_ATTRIBUTES_SET' EXPORTING i_case_guid_loc = gs_guids-case_guid_loc it_attributes = gt_attributes IMPORTING es_return = gs_return.

FDM_AR_DISPUTE_ERROR CALL FUNCTION 'FDM_AR_DISPUTE_ERROR' EXPORTING is_syst = syst is_return = gs_return EXCEPTIONS error_message = 4.

FDM_AR_AUTO_DELETE_WRITE_OFF CALL FUNCTION 'FDM_AR_AUTO_DELETE_WRITE_OFF' EXPORTING i_case_guid_loc = gs_guids-case_guid_loc i_proc_seqnr = gs_guids-proc_seqnr.



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 RFDM2000 or its description.