RFFMSC01 is a standard Executable ABAP Report available within your SAP system (depending on your version and release level). It is used for You can automatically generate cover pools from an FM area and fiscal year using this program...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 RFFMSC01 into the relevant SAP transactions such as SE38 or SE80
Below is a list of transaction codes which are relevant to this SAP report
FM7C - Generate Cover Pools from Rules
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_FIKRS = D FM Area
Selection Text: P_GJAHR = D Fiscal Year
Selection Text: P_HVMTNR = D Budget Memo
Selection Text: P_TEST = D Test Run
Title: Generate Cover Pools from Rules
Text Symbol: 001 = FM Area
Text Symbol: 002 = Test Run
Text Symbol: 003 = Update Run
Text Symbol: 004 = AN ERROR HAS OCCURRED! NO CHANGES WILL BE MADE TO THE DATABASE!
Text Symbol: 007 = NO COVER POOL: NO SUITABLE ACCOUNT ASSIGNMENT
Text Symbol: 008 = NO COVER POOL: MINIMUM NUMBER OF ACCOUNT ASSIGNMENTS NOT REACHED
Text Symbol: 009 = Budget Memo
Text Symbol: 010 = Fiscal Year
Text Symbol: 011 = COVER POOL NOT CREATED
Text Symbol: 020 = Rules and Assignment of Budget Account Assignment for the Cover Pools
Text Symbol: 051 = Name
Text Symbol: 056 = Rule Commitment Item
Text Symbol: 057 = Rule Funds Center
Text Symbol: 058 = Rule Fund
Text Symbol: 063 = Rule Functional Area
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
HELP_VALUES_GET_NO_DD_NAME CALL FUNCTION 'HELP_VALUES_GET_NO_DD_NAME' EXPORTING selectfield = 'HVMTNR' write_selectfield_in_colours = 'X' IMPORTING ind = l_ind TABLES fields = l_fields full_table = l_t_hvmt EXCEPTIONS full_table_empty = 1.
FMFK_FIKRS_READ CALL FUNCTION 'FMFK_FIKRS_READ' EXPORTING IP_FIKRS = P_FIKRS. "/ check fikrs
FM_COVER_POOL_GENERATE CALL FUNCTION 'FM_COVER_POOL_GENERATE' EXPORTING IP_FIKRS = P_FIKRS IP_GJAHR = P_GJAHR TABLES T_FMCVRULEGEN_WITH_USED = G_T_FMCVRULEGEN_WITH_USED T_FMDECKHK = G_T_FMDECKHK T_FMDECKRG = G_T_FMDECKRG T_FMDECKRGT = G_T_FMDECKRGT T_FMDECKHK_NOTCREATED = G_T_FMDECKHK_NOTCREATED T_FMDECKRG_NOTCREATED = G_T_FMDECKRG_NOTCREATED.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.