RFFMRB_RECONSTRUCT_INDEX is a standard Executable ABAP Report available within your SAP system (depending on your version and release level). It is used for IF &[SWITCH]PSM_FM_BCS_REV_1& = 'X' You must reconstruct the index assigning budget addresses to RIB objects in the following circumstances: After a change to the
If you would like to execute this report or see the full code listing simply enter RFFMRB_RECONSTRUCT_INDEX into the relevant SAP transactions such as SE38 or SE80
Below is a list of transaction codes which are relevant to this SAP report
FMRBIDXREC - Reconstruct Index for RIB
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_USERD = D .
Selection Text: S_MEASR = D .
Selection Text: S_FONDS = D .
Selection Text: S_FICTR = D .
Selection Text: S_FAREA = D .
Selection Text: S_BUDPER = D .
Selection Text: P_VARIA = D .
Selection Text: P_TEST = Test Run
Selection Text: P_LDNR = D .
Selection Text: P_GJAHR = D .
Selection Text: P_FIKRS = D .
Title: Reconstruct Index for Revenues Increasing the Budget
Text Symbol: 507 = Update Run
Text Symbol: 506 = Test Run
Text Symbol: 505 = Processing Status
Text Symbol: 503 = Fiscal Year
Text Symbol: 501 = Budget Category
Text Symbol: 500 = FM Area
Text Symbol: 100 = RFFMRB_RECONSTRUCT_INDEX
Text Symbol: 015 = Restriction on FM Account Assignments
Text Symbol: 012 = Number of entries deleted
Text Symbol: 011 = Number of entries changed
Text Symbol: 010 = Number of entries to change
Text Symbol: 009 = Number of entries to delete
Text Symbol: 005 = Processing Options
INCLUDE: IFMRBCON,
INCLUDE: FMBS_OUTPUT_PROTOCOL_TYPES.
No SAP DATABASE tables are accessed within this REPORT code!
RS_SET_SELSCREEN_STATUS CALL FUNCTION 'RS_SET_SELSCREEN_STATUS' EXPORTING p_status = 'SELECTION' TABLES p_exclude = gt_fcode_excl.
FMBAS_SET_LEDGER_DROPDOWN_LIST CALL FUNCTION 'FMBAS_SET_LEDGER_DROPDOWN_LIST' EXPORTING i_ldnr_singl_field = 'P_LDNR' i_t_ldnr_txt = g_t_ldnr_txt.
FMBAS_READ_ACT_LDNR_WITH_TEXT CALL FUNCTION 'FMBAS_READ_ACT_LDNR_WITH_TEXT' EXPORTING i_fikrs = l_fikrs i_flg_use_fin_bdg = off IMPORTING e_flg_single_rldnr = g_flg_single_rldnr e_t_rldnr_txt = g_t_ldnr_txt EXCEPTIONS OTHERS = 1.
FMBAS_READ_ACT_LDNR_WITH_TEXT * CALL FUNCTION 'FMBAS_READ_ACT_LDNR_WITH_TEXT' * EXPORTING * i_fikrs = p_fikrs * IMPORTING * e_flg_single_rldnr = g_flg_single_rldnr * e_t_rldnr_txt = g_t_ldnr_txt.
FMBAS_SET_LEDGER_DROPDOWN_LIST * CALL FUNCTION 'FMBAS_SET_LEDGER_DROPDOWN_LIST' * EXPORTING * i_ldnr_singl_field = 'P_LDNR' * i_t_ldnr_txt = g_t_ldnr_txt * .
FMCU_GET_DIMENSIONS CALL FUNCTION 'FMCU_GET_DIMENSIONS' EXPORTING i_fm_area = s_fm_area IMPORTING e_fund_state = s_fund_state e_funcarea_state = s_funcarea_state e_measure_state = s_measure_state e_userdim_state = s_userdim_state e_budget_pd_state = s_budget_pd_state EXCEPTIONS OTHERS = 1.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.
RFFMRB_RECONSTRUCT_INDEX - Reconstruct Index for Revenues Increasing the Budget RFFMRB_RECONSTRUCT_INDEX - Reconstruct Index for Revenues Increasing the Budget RFFMRB_HIS_DISP - Display Change History Records for RIB Rules RFFMRB_HIS_DISP - Display Change History Records for RIB Rules RFFMRB_HIS_DEL - Delete Change History Records for RIB Rules RFFMRB_HIS_DEL - Delete Change History Records for RIB Rules