RFFMUD21 is a standard Executable ABAP Report available within your SAP system (depending on your version and release level). It is used for Budget Increase through Revenues in Distribution Procedure 2 (Totals-based) You can use this program to increase the expenditure budget based on purpose-oriented revenues...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 RFFMUD21 into the relevant SAP transactions such as SE38 or SE80
Below is a list of transaction codes which are relevant to this SAP report
FMIT - Totals-Based Distribution Procedure
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: S_FONDS = Fund
Selection Text: S_FIPEX = Commitment item
Selection Text: S_FICTR = Funds center
Selection Text: S_FAREA = D Funktionsbereich
Selection Text: P_YEAR = Fiscal year
Selection Text: P_TEST = Test run
Selection Text: P_REV = Sort by revenue
Selection Text: P_MANUAL = Manual budget increase
Selection Text: P_FMAREA = FM area
Selection Text: P_EXP = Sort by expenditure
Title: Budget Increase Due To Revenues on Totals
Text Symbol: 062 = Sort Criteria
Text Symbol: 061 = Process control
Text Symbol: 060 = Restriction to rev. FM acct. assignments
Text Symbol: 011 = FM Currency
Text Symbol: 010 = Status
Text Symbol: 009 = Date
Text Symbol: 008 = User
Text Symbol: 007 = LIVE RUN
Text Symbol: 006 = Fisc.Year
Text Symbol: 005 = FM Area
Text Symbol: 004 = Totals-based Increase
Text Symbol: 003 = TEST-MODE
Text Symbol: 002 = Error
Text Symbol: 001 = Success
INCLUDE RKASMAWF.
No SAP DATABASE tables are accessed within this REPORT code!
FM_CHECK_CUSTOMIZING CALL FUNCTION 'FM_CHECK_CUSTOMIZING' EXCEPTIONS fm_not_active = 1.
FM_FYC_SCHEDMAN_INIT CALL FUNCTION 'FM_FYC_SCHEDMAN_INIT' EXPORTING i_repid = 'RFFMUD21' i_tcode = 'FMIT' i_wfitem = wf_witem i_wflist = wf_wlist i_flg_test = p_test IMPORTING e_f_schedman_key = g_f_schedman_key.
ENQUEUE_EFMUDRULE CALL FUNCTION 'ENQUEUE_EFMUDRULE' EXPORTING gjahr = p_year fikrs = p_fmarea EXCEPTIONS foreign_lock = 1.
FM_RIB_ON_TOTAL_REVENUE CALL FUNCTION 'FM_RIB_ON_TOTAL_REVENUE' EXPORTING i_manual = p_manual i_test = p_test i_fisc_year = p_year i_fm_area = p_fmarea IMPORTING o_fm_currency = g_fm_currency TABLES r_fonds = s_fonds r_funds_ctr = s_fictr r_cmmt_item = s_fipex r_farea = s_farea t_successprotocol = g_t_successprotocol t_errorprotocol = g_t_errorprotocol t_messages = g_t_messages.
FM_RIB_PROTOCOL_DISPLAY * CALL FUNCTION 'FM_RIB_PROTOCOL_DISPLAY' * EXPORTING * i_repid = g_repid * i_rib_method = fmud_con_udmethode_udvertlsum * i_fm_area = p_fmarea * i_sort_by_rev = g_sort_by_rev * i_fm_currency = g_fm_currency * i_test = p_test * i_manual = p_manual * it_events = g_t_events * TABLES * t_protocol = g_t_successprotocol * t_errorprotocol = g_t_errorprotocol * t_messages = g_t_messages * t_bhdgd = g_t_bhdgd.
FM_FYC_SCHEDMAN_CLOSE CALL FUNCTION 'FM_FYC_SCHEDMAN_CLOSE' EXPORTING i_f_schedman_key = g_f_schedman_key i_wfitem = wf_witem i_wfokey = wf_okey i_aplstat = g_aplstat i_cnt_obj = sy-tfill.
CONVERT_DATE_TO_EXTERNAL CALL FUNCTION 'CONVERT_DATE_TO_EXTERNAL' EXPORTING date_internal = sy-datum IMPORTING date_external = date.
REUSE_ALV_COMMENTARY_WRITE CALL FUNCTION 'REUSE_ALV_COMMENTARY_WRITE' EXPORTING it_list_commentary = it_header.
REUSE_ALV_GRID_DISPLAY CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY' EXPORTING i_callback_program = g_repid i_structure_name = 'RIB_PROTOCOL_STRUCT' is_layout = g_layout i_save = g_save is_variant = g_variant it_events = g_t_events is_print = g_print TABLES t_outtab = rib_protocol.
REUSE_ALV_GRID_DISPLAY CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY' EXPORTING i_callback_program = g_repid i_structure_name = 'RIB_PROTOCOL_STRUCT_EXP' is_layout = g_layout i_save = g_save is_variant = g_variant it_events = g_t_events is_print = g_print TABLES t_outtab = rib_protocol_exp.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.
RFFMUD21 - Budget Increase Due To Revenues on Totals RFFMUD21 - Budget Increase Due To Revenues on Totals RFFMUD11 - Generate Additional Document Data for Revenues Increasing the Budget RFFMUD11 - Generate Additional Document Data for Revenues Increasing the Budget RFFMUD01O - Budget Increases by Revenues RFFMUD01O - Budget Increases by Revenues