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
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_MODE = D Display Mode
Selection Text: S_GUIDS = GUIDs with Process Number
Title: Automatic Write-Off of Dispute Cases
INCLUDE RFDM2000_TOP.
No SAP DATABASE tables are accessed within this REPORT code!
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.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.