SAP Reports / Programs | Public Sector Management | Funds Management(PSM-FM) SAP PSM

RFMREGENERATEREPORT SAP ABAP Report - Regenerate Reports for Rule Type DRULE







RFMREGENERATEREPORT is a standard Executable ABAP Report available within your SAP system (depending on your version and release level). It is used for Use this program to regenerate the migrated reports used by rule type 'DRULE' for the FM and GM derivation tools...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 RFMREGENERATEREPORT 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 RFMREGENERATEREPORT. "Basic submit
SUBMIT RFMREGENERATEREPORT AND RETURN. "Return to original report after report execution complete
SUBMIT RFMREGENERATEREPORT 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_TEST = Test run
Title: Regenerate Reports for Rule Type DRULE
Text Symbol: 001 = Reports were not regenerated
Text Symbol: MES = Messages
Text Symbol: REP = List of Reports to be Regenerated


INCLUDES used within this REPORT RFMREGENERATEREPORT

INCLUDE: IFIFMMDC,LABADRTYP.
INCLUDE: IFIFMMDC,LABADRTYP.


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:

MESSAGES_INITIALIZE CALL FUNCTION 'MESSAGES_INITIALIZE'.

ABADR_REGENERATE_REPORTS CALL FUNCTION 'ABADR_REGENERATE_REPORTS' EXPORTING I_APPL = l_tabadrs-applclass I_SUBCLASS = l_tabadrs-subclass I_STRATEGY_ID = l_tabadrs-abadrstratid I_ENV = l_tabadrs-abadrenv I_CLIENT = l_tabadrs-mandt "Note 1328101 IMPORTING E_TAB_MESSAGES = l_tab_messages.

MESSAGE_STORE CALL FUNCTION 'MESSAGE_STORE' EXPORTING msgty = l_message-severity msgv1 = l_message-msgv1 msgv2 = l_message-msgv2 msgv3 = l_message-msgv3 msgv4 = l_message-msgv4 arbgb = l_message-messid txtnr = l_message-messnr zeile = l_zeile exception_if_not_active = space.

MESSAGES_SHOW CALL FUNCTION 'MESSAGES_SHOW' EXCEPTIONS inconsistent_range = 0 no_messages = 0 OTHERS = 0.

REUSE_ALV_FIELDCATALOG_MERGE call function 'REUSE_ALV_FIELDCATALOG_MERGE' EXPORTING i_structure_name = 'TABADRS' CHANGING ct_fieldcat = l_t_fcat EXCEPTIONS inconsistent_interface = 1 program_error = 2 others = 3.

REUSE_ALV_GRID_DISPLAY CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY' EXPORTING it_fieldcat = l_t_fcat i_grid_title = text-rep TABLES t_outtab = l_t_tabadrs.



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 RFMREGENERATEREPORT or its description.