RFFMPLAN_DEL 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 delete plan data for an FM area and plan version...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 RFFMPLAN_DEL 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 = D Financial management area
Selection Text: P_TEST = D Test run
Selection Text: P_VERSN = D Version
Selection Text: S_GJAHR = D Fiscal year
Title: Delete Financial Budget
Text Symbol: 001 = Version
Text Symbol: 010 = FM Area
Text Symbol: 020 = Update run
Text Symbol: 021 = Test run
Text Symbol: 030 = Number of lines translated
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
KBPS_SHOW_VERSIONS CALL FUNCTION 'KBPS_SHOW_VERSIONS' "note613816 EXPORTING APPLIK = 'A' WRTTP = '62' GEBER = ' ' IM_COP_VERSN = 'X' IMPORTING VERSION = P_VERSN.
FMFK_FIKRS_READ CALL FUNCTION 'FMFK_FIKRS_READ' EXPORTING IP_APPLICATION_DATA = 'C' IP_FIKRS = P_FIKRS IMPORTING F_FM01 = L_F_FM01.
KBPS_CHECK_VERSION CALL FUNCTION 'KBPS_CHECK_VERSION' EXPORTING IM_APPLIK = 'A' IM_OBJECT = L_F_FM01-OBJNR IM_VERSION = P_VERSN IM_WRTTP = '62'.
FM_AUTH_CHECK_FM_AREA CALL FUNCTION 'FM_AUTH_CHECK_FM_AREA' EXPORTING I_FIKRS = P_FIKRS I_ACTVT = FMAU_PL_CRE"Planen I_MSGTY = 'E'.
FM_AUTH_CHECK_VERSION CALL FUNCTION 'FM_AUTH_CHECK_VERSION' EXPORTING I_FIKRS = P_FIKRS I_VERSN = P_VERSN I_ACTVT = FMAU_VE_DEL"Version loeschen I_MSGTY = 'E'.
ENQUEUE_EBPHI_EX CALL FUNCTION 'ENQUEUE_EBPHI_EX' EXPORTING MODE_BPHI = 'E' OBJNR = L_F_FM01-OBJNR WRTTP = '62' VERSN = P_VERSN.
DEQUEUE_EBPHI_EX CALL FUNCTION 'DEQUEUE_EBPHI_EX' EXPORTING MODE_BPHI = 'E' OBJNR = L_F_FM01-OBJNR WRTTP = '62' VERSN = P_VERSN.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.