SAP Reports / Programs

RFFMDELOBSIND SAP ABAP Report - Delete Invalid Posting Addresses (with Missing OBJNR)







RFFMDELOBSIND is a standard Executable ABAP Report available within your SAP system (depending on your version and release level). It is used for Report to delete invalid posting addresses from the index table FMBASIDX...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 RFFMDELOBSIND into the relevant SAP transactions such as SE38 or SE80


ABAP code to call this SAP report using the submit statement

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.






SUBMIT RFFMDELOBSIND. "Basic submit
SUBMIT RFFMDELOBSIND AND RETURN. "Return to original report after report execution complete
SUBMIT RFFMDELOBSIND VIA SELECTION-SCREEN. "Display selection screen of submitted report to user
    See more syntax options for the ABAP SUBMIT statement


Text pool values


Selection Text: P_FIKRS = D .
Selection Text: P_GJAHR = D .
Selection Text: P_SLDNR = D .
Selection Text: P_TEST = Test Run
Selection Text: S_OBJNR = D .
Title: Delete Invalid Posting Addresses (with Missing OBJNR)
Text Symbol: 001 = Yes
Text Symbol: 002 = No
Text Symbol: 003 = & invalid posting addresses found
Text Symbol: 004 = Total of & index entries to be checked.
Text Symbol: 005 = Do you want to continue?
Text Symbol: H01 = FM Area
Text Symbol: H02 = Fiscal Year
Text Symbol: H03 = Posting Ledger
Text Symbol: H04 = Execution Mode
Text Symbol: H05 = Update run
Text Symbol: H06 = Test run
Text Symbol: H07 = No invalid posting addresses found


INCLUDES used within this REPORT RFFMDELOBSIND

No INCLUDES are used within this REPORT code!


TABLES used within REPORT and the associated SELECT statement:





No SAP DATABASE tables are accessed within this REPORT code!


Function Modules used within report and the associated call statement:

POPUP_TO_CONFIRM CALL FUNCTION 'POPUP_TO_CONFIRM' EXPORTING titlebar = l_text1 text_question = l_text2 text_button_1 = 'Yes'(001) text_button_2 = 'No'(002) display_cancel_button = space IMPORTING answer = l_answer EXCEPTIONS OTHERS = 1.

FMFK_FIKRS_READ CALL FUNCTION 'FMFK_FIKRS_READ' EXPORTING ip_fikrs = u_fm_area EXCEPTIONS OTHERS = 1.

FMCU_GET_DIMENSIONS CALL FUNCTION 'FMCU_GET_DIMENSIONS' EXPORTING i_fm_area = p_fikrs IMPORTING e_fund_state = l_fund_state e_funcarea_state = l_funcarea_state e_measure_state = l_measure_state e_userdim_state = l_userdim_state e_budget_pd_state = l_budget_pd_state EXCEPTIONS OTHERS = 1.

FMBAS_GET_ADDRESS_FOR_OBJNR CALL FUNCTION 'FMBAS_GET_ADDRESS_FOR_OBJNR' EXPORTING i_objnr = l_f_protocol-r_objnr IMPORTING e_s_address = l_f_address EXCEPTIONS OTHERS = 1.

REUSE_ALV_FIELDCATALOG_MERGE CALL FUNCTION 'REUSE_ALV_FIELDCATALOG_MERGE' EXPORTING i_structure_name = 'V_FMBASIDX_R' CHANGING ct_fieldcat = g_t_fieldcat EXCEPTIONS OTHERS = 1.

REUSE_ALV_GRID_DISPLAY CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY' EXPORTING i_callback_program = g_repid i_callback_top_of_page = 'TOP_OF_PAGE' it_fieldcat = g_t_fieldcat TABLES t_outtab = g_t_protocol EXCEPTIONS OTHERS = 1.

REUSE_ALV_COMMENTARY_WRITE CALL FUNCTION 'REUSE_ALV_COMMENTARY_WRITE' EXPORTING it_list_commentary = l_t_top_of_page.



Contribute (Add Comments)

Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.







The contribute/comments section below therefore offer's an opportunity for anyone to add additional information. This can be anything from useful hints, tips and screen shots to relevant SAP notes or anything else you feel is relevant to this report.

This will then be available for everyone to easily find by simply searching on the report name RFFMDELOBSIND or its description.