RFFMAR46 is a standard Executable ABAP Report available within your SAP system (depending on your version and release level). It is used for Deleting budget texts in Funds Management Postprocessing program RFFMAR46 automatically deletes SAPscript texts of budget documents, after archiving deletion program RFFMAR44 or RFFMAR54 has been executed...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 RFFMAR46 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_DET = Detail log
Selection Text: P_TEST = Test run
Selection Text: S_NAME = Text name
Title: Delete Unused Budget Texts in FM
Text Symbol: 100 = Number of Deleted Budget Texts:
Text Symbol: 110 = Object Text Name ID Lang. User Date
Text Symbol: 120 = Update run
Text Symbol: 130 = Test run
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
DELETE_TEXT call function 'DELETE_TEXT' exporting id = 'BPMT' language = tdspras name = g_t_tdname_text-tdname object = 'TEXT' exceptions others = 0.
REUSE_ALV_FIELDCATALOG_MERGE CALL FUNCTION 'REUSE_ALV_FIELDCATALOG_MERGE' EXPORTING i_internal_tabname = l_internal_tabname i_structure_name = l_structure_name CHANGING ct_fieldcat = c_t_fieldcat EXCEPTIONS inconsistent_interface = 1 program_error = 2 OTHERS = 3.
FM_ALV_LAYOUT CALL FUNCTION 'FM_ALV_LAYOUT' CHANGING c_f_layout = c_f_layout.
K_KKB_SELECTIONS_READ call function 'K_KKB_SELECTIONS_READ' exporting v_program = g_this_report rs_sel_hide = ls_sel_hide importing rflag_selections = l_flag_selection tables ct_isetab = lt_isetab1[] et_isetab_full = lt_isetab[].
REUSE_ALV_COMMENTARY_WRITE call function 'REUSE_ALV_COMMENTARY_WRITE' EXPORTING it_list_commentary = l_t_listheader.
REUSE_ALV_GRID_DISPLAY CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY' EXPORTING I_CALLBACK_PROGRAM = g_this_report I_STRUCTURE_NAME = 'STXH' " i_grid_title = g_f_toalv-titletext i_grid_settings = l_f_grid_settings IS_VARIANT = G_F_DISVARIANT IS_LAYOUT = l_f_layout IT_FIELDCAT = l_t_fieldcat is_sel_hide = l_f_sel_crit I_DEFAULT = 'X' I_SAVE = 'A' IS_PRINT = l_f_print IT_EVENTS = l_t_events TABLES T_OUTTAB = l_t_stxh EXCEPTIONS PROGRAM_ERROR = 1 OTHERS = 2.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.
RFFMAR46 - Delete Unused Budget Texts in FM RFFMAR46 - Delete Unused Budget Texts in FM RFFMAR45 - Reloading Archived Budget Hierarchy Documents in FM RFFMAR45 - Reloading Archived Budget Hierarchy Documents in FM RFFMAR44 - Deleting Archived Budget Hierarchy Documents in FM RFFMAR44 - Deleting Archived Budget Hierarchy Documents in FM