FMRPRULE SAP (Rules for Revenue Cover Pool) Table details

Dictionary Type: Table
Description: Rules for Revenue Cover Pool




ABAP Code to SELECT data from FMRPRULE
Related tables to FMRPRULE
Access table FMRPRULE




Table field list including key, data, relationships and ABAP select examples

FMRPRULE is a standard SAP Table which is used to store Rules for Revenue Cover Pool data and is available within R/3 SAP systems depending on the version and release level.

The FMRPRULE table consists of various fields, each holding specific information or linking keys about Rules for Revenue Cover Pool data available in SAP. These include REVNPOOL (Cover pool), GJAHR (Fiscal Year), FIKRS (Financial Management Area), UDECK (Type of revenue increasing budget).. See below for full list along with technical details, documentation, text table, check tables, foreign key relationships, conversion routines, relevant tcodes and example ABAP select code etc. .

Delivery Class: A - Application table (master and transaction data)
Display/Maintenance via tcode SM30: Display/Maintenance Allowed but with Restrictions
SAP enhancement categories: Not classified


SAP FMRPRULE table fields - Full list of fields found in SAP data dictionary

Field Description Data Element Data Type length (Dec) Check table Conversion Routine Domain Name MemoryID SHLP
MANDTClient MANDTCLNT3Assigned to domainMANDT
REVNPOOLCover pool FM_DECKRNGCHAR16FMDECKRGFM_DECKRNG
GJAHRFiscal Year GJAHRNUMC4GJAHRGJAHRGJR
FIKRSFinancial Management Area FIKRSCHAR4Assigned to domainFIKRSFIK
UDECKType of revenue increasing budget FM_UDECKCHAR1FM_UDECK
EHVMTNRBudget memo FM_HVMTNRCHAR10FMHVMTXTFM_HVMTNR
AHVMTNRBudget memo FM_HVMTNRCHAR10FMHVMTXTFM_HVMTNR
UDMETHODEProcess for increasing budget FM_UDMETHDCHAR1FM_UDMETHD
INCHECKIn budget transfers, check for existing additional revenue FM_INCHECKCHAR1XFELD
DEAKTIVDeactivation Indicator FM_DEAKTIVCHAR1XFELD
UDPAYRevenues increasing the payment budget FM_UDPAYCHAR1XFELD
UDINCTIEvent leading to budget increase FM_UDINCTICHAR1FM_UDINCTI
PAYUDINCTI61Budget increase by down payment FM_UDINCTI61CHAR1XFELD
PAYUDINCTI66Budget increase through revenue transfer posting FM_UDINCTI66CHAR1XFELD
PAYPROZ83% of a revenue which increases the budget FM_INCPROZDEC5(2) PRZ32
PAYPROZ54% of a revenue which increases the budget FM_INCPROZDEC5(2) PRZ32
PAYPROZ57% of a revenue which increases the budget FM_INCPROZDEC5(2) PRZ32
MINBDGTMinimum revenue, dependent on current budget FM_MINBDGTCHAR1FM_RIB_CALC_BASIS
MINPROZMinimum revenue in % of current budget FM_MINPROZDEC5(2) PRZ32
MININCMinimum revenue from which the budget is increased FM_MININCCURR15(2) WERTV8
ABSINTMaximum Difference Between Minimum Revenue and Upper Tol. L FM_ABSINTCURR15(2) WERTV8
MAXBDGTUpper limit dependent on current budget FM_MAXBDGTCHAR1FM_RIB_CALC_BASIS
MAXPROZUpper limit in % of current budget FM_MAXPROZDEC5(2) PRZ32
MAXINCMaximum to which the budget is increased FM_MAXINCCURR15(2) WERTV8
TOTLINCAct.revenues increasing the budget for an FM acct assignment FM_TOTLINCCURR15(2) WERTV8
OVFIPEXCommitment Item FM_FIPEXCHAR24Assigned to domainFM_FIPEXFPS
OVFICTRFunds Center FM_FICTRCHAR16Assigned to domainFISTLFIS
OVFONDSFund BP_GEBERCHAR10Assigned to domainBP_GEBERFIC
OVPROZ% of a Revenue Allotted to Expenditure FM Account Assignment FM_ERHPROZDEC5(2) PRZ32
UDCOMRevenues increase commitment budget FM_UDCOMCHAR1XFELD
COMUDINCTIEvent leading to budget increase FM_UDINCTICHAR1FM_UDINCTI
COMUDINCTI61Budget increase by down payment FM_UDINCTI61CHAR1XFELD
COMUDINCTI66Budget increase through revenue transfer posting FM_UDINCTI66CHAR1XFELD
COMPROZ83% of a revenue which increases the budget FM_INCPROZDEC5(2) PRZ32
COMPROZ54% of a revenue which increases the budget FM_INCPROZDEC5(2) PRZ32
COMPROZ57% of a revenue which increases the budget FM_INCPROZDEC5(2) PRZ32
COMMINBDGTMinimum revenue, dependent on current budget FM_MINBDGTCHAR1FM_RIB_CALC_BASIS
COMMINPROZMinimum revenue in % of current budget FM_MINPROZDEC5(2) PRZ32
COMMININCMinimum revenue from which the budget is increased FM_MININCCURR15(2) WERTV8
COMABSINTMaximum Difference Between Minimum Revenue and Upper Tol. L FM_ABSINTCURR15(2) WERTV8
COMMAXBDGTUpper limit dependent on current budget FM_MAXBDGTCHAR1FM_RIB_CALC_BASIS
COMMAXPROZUpper limit in % of current budget FM_MAXPROZDEC5(2) PRZ32
COMMAXINCMaximum to which the budget is increased FM_MAXINCCURR15(2) WERTV8
COMTOTLINCAct.revenues increasing the budget for an FM acct assignment FM_TOTLINCCURR15(2) WERTV8
COMOVFIPEXCommitment Item FM_FIPEXCHAR24Assigned to domainFM_FIPEXFPS
COMOVFICTRFunds Center FM_FICTRCHAR16Assigned to domainFISTLFIS
COMOVFONDSFund BP_GEBERCHAR10Assigned to domainBP_GEBERFIC
COMOVPROZ% of a Revenue Allotted to Expenditure FM Account Assignment FM_ERHPROZDEC5(2) PRZ32
UDUPDUsage of increase rule FM_UDUPDCHAR1FM_UDUPD
UDMINMinimum revenue increases budget FM_UDMINCHAR1FM_UDMIN

Key field Non-key field



How do I retrieve data from SAP table FMRPRULE using ABAP code

The following ABAP code Example will allow you to do a basic selection on FMRPRULE to SELECT all data from the table
DATA: WA_FMRPRULE TYPE FMRPRULE.

SELECT SINGLE *
FROM FMRPRULE
INTO CORRESPONDING FIELDS OF WA_FMRPRULE
WHERE...

How to access SAP table FMRPRULE

Within an ECC or HANA version of SAP you can also view further information about FMRPRULE and the data within it using relevant transactions such as

SE11 (ABAP Dictionary Maintenance)
SM30 (Maintain Table Data)
SE80 (Object Navigator)
SE16 (Data Browser).


Search for further information about these or an SAP related objects



Comments on this SAP object

What made you want to lookup this SAP object? Please tell us what you were looking for and anything you would like to be included on this page!