SAP RM_FIMA_EVAL Function Module for RM-FIMA: Call of All Evaluation Categories









RM_FIMA_EVAL is a standard rm fima eval SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for RM-FIMA: Call of All Evaluation Categories processing and below is the pattern details for this FM, showing its interface including any import and export parameters, exceptions etc. there is also a full "cut and paste" ABAP pattern code example, along with implementation ABAP coding, documentation and contribution comments specific to this or related objects.


See here to view full function module documentation and code listing for rm fima eval FM, simply by entering the name RM_FIMA_EVAL into the relevant SAP transaction such as SE37 or SE38.

Function Group: RMR1
Program Name: SAPLRMR1
Main Program: SAPLRMR1
Appliation area: F
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:



Function RM_FIMA_EVAL pattern details

In-order to call this FM within your sap programs, simply using the below ABAP pattern details to trigger the function call...or see the full ABAP code listing at the end of this article. You can simply cut and paste this code into your ABAP progrom as it is, including variable declarations.
CALL FUNCTION 'RM_FIMA_EVAL'"RM-FIMA: Call of All Evaluation Categories
EXPORTING
SPARA = "
* I_TASKNAME = "Character string - 8 user-defined characters

IMPORTING
E_EOSFGDT = "

TABLES
I_FOB = "
* E_EOSGAP = "
* E_EOAMORT = "
* E_EOOBJSGAP = "
* E_EOOBJAMORT = "
E_ERROR = "
* E_ERRORKL = "
* E_EOVAR10 = "RM Results Object for P+L 10 Times per BP
* E_MEO = "
* E_EOOPT = "RM Results Object of options
I_METH = "
* I_KLEV = "
* E_EONPV = "
* E_EOBAR = "
* E_EOPOS = "
* E_EOVAR = "
* E_EOBVAR = "
* E_EODD = "
.



IMPORTING Parameters details for RM_FIMA_EVAL

SPARA -

Data type: JBRHSSPARI
Optional: No
Call by Reference: Yes

I_TASKNAME - Character string - 8 user-defined characters

Data type: DATATYPE-CHAR0008
Optional: Yes
Call by Reference: Yes

EXPORTING Parameters details for RM_FIMA_EVAL

E_EOSFGDT -

Data type: TVS_SFGDT_TAB
Optional: No
Call by Reference: Yes

TABLES Parameters details for RM_FIMA_EVAL

I_FOB -

Data type: JBRFOB
Optional: No
Call by Reference: No ( called with pass by value option)

E_EOSGAP -

Data type: JBRSAVEGAP
Optional: Yes
Call by Reference: No ( called with pass by value option)

E_EOAMORT -

Data type: JBRBPAMORTRES
Optional: Yes
Call by Reference: No ( called with pass by value option)

E_EOOBJSGAP -

Data type: JBROBJSAVEGAP
Optional: Yes
Call by Reference: No ( called with pass by value option)

E_EOOBJAMORT -

Data type: JBROBJAMORTRES
Optional: Yes
Call by Reference: No ( called with pass by value option)

E_ERROR -

Data type: BAPIERR
Optional: No
Call by Reference: No ( called with pass by value option)

E_ERRORKL -

Data type: BAPIERR
Optional: Yes
Call by Reference: No ( called with pass by value option)

E_EOVAR10 - RM Results Object for P+L 10 Times per BP

Data type: VTVEOVAR10
Optional: Yes
Call by Reference: Yes

E_MEO -

Data type: TVM_MEO_TAB
Optional: Yes
Call by Reference: Yes

E_EOOPT - RM Results Object of options

Data type: VTVEOOPT
Optional: Yes
Call by Reference: Yes

I_METH -

Data type: VTVFIMA
Optional: No
Call by Reference: No ( called with pass by value option)

I_KLEV -

Data type: KLEV
Optional: Yes
Call by Reference: No ( called with pass by value option)

E_EONPV -

Data type: VTVEONPV
Optional: Yes
Call by Reference: No ( called with pass by value option)

E_EOBAR -

Data type: VTVEOBAR
Optional: Yes
Call by Reference: No ( called with pass by value option)

E_EOPOS -

Data type: VTVEOPOS
Optional: Yes
Call by Reference: No ( called with pass by value option)

E_EOVAR -

Data type: VTVEOVAR
Optional: Yes
Call by Reference: No ( called with pass by value option)

E_EOBVAR -

Data type: VTVEOBVAR
Optional: Yes
Call by Reference: No ( called with pass by value option)

E_EODD -

Data type: VTVEODD
Optional: Yes
Call by Reference: No ( called with pass by value option)

Copy and paste ABAP code example for RM_FIMA_EVAL Function Module

The ABAP code below is a full code listing to execute function module POPUP_TO_CONFIRM including all data declarations. The code uses the original data declarations rather than the latest in-line data DECLARATION SYNTAX but I have included an ABAP code snippet at the end to show how declarations would look using the newer method of declaring data variables on the fly. This will allow you to compare and fully understand the new inline method. Please note some of the newer syntax such as the @DATA is not available until a later 4.70 service pack (SP8), which i why i have stuck to the origianl for this example.

DATA:
lt_i_fob  TYPE STANDARD TABLE OF JBRFOB, "   
lv_spara  TYPE JBRHSSPARI, "   
lv_e_eosfgdt  TYPE TVS_SFGDT_TAB, "   
lt_e_eosgap  TYPE STANDARD TABLE OF JBRSAVEGAP, "   
lt_e_eoamort  TYPE STANDARD TABLE OF JBRBPAMORTRES, "   
lt_e_eoobjsgap  TYPE STANDARD TABLE OF JBROBJSAVEGAP, "   
lt_e_eoobjamort  TYPE STANDARD TABLE OF JBROBJAMORTRES, "   
lt_e_error  TYPE STANDARD TABLE OF BAPIERR, "   
lt_e_errorkl  TYPE STANDARD TABLE OF BAPIERR, "   
lt_e_eovar10  TYPE STANDARD TABLE OF VTVEOVAR10, "   
lt_e_meo  TYPE STANDARD TABLE OF TVM_MEO_TAB, "   
lt_e_eoopt  TYPE STANDARD TABLE OF VTVEOOPT, "   
lt_i_meth  TYPE STANDARD TABLE OF VTVFIMA, "   
lv_i_taskname  TYPE DATATYPE-CHAR0008, "   
lt_i_klev  TYPE STANDARD TABLE OF KLEV, "   
lt_e_eonpv  TYPE STANDARD TABLE OF VTVEONPV, "   
lt_e_eobar  TYPE STANDARD TABLE OF VTVEOBAR, "   
lt_e_eopos  TYPE STANDARD TABLE OF VTVEOPOS, "   
lt_e_eovar  TYPE STANDARD TABLE OF VTVEOVAR, "   
lt_e_eobvar  TYPE STANDARD TABLE OF VTVEOBVAR, "   
lt_e_eodd  TYPE STANDARD TABLE OF VTVEODD. "   

  CALL FUNCTION 'RM_FIMA_EVAL'  "RM-FIMA: Call of All Evaluation Categories
    EXPORTING
         SPARA = lv_spara
         I_TASKNAME = lv_i_taskname
    IMPORTING
         E_EOSFGDT = lv_e_eosfgdt
    TABLES
         I_FOB = lt_i_fob
         E_EOSGAP = lt_e_eosgap
         E_EOAMORT = lt_e_eoamort
         E_EOOBJSGAP = lt_e_eoobjsgap
         E_EOOBJAMORT = lt_e_eoobjamort
         E_ERROR = lt_e_error
         E_ERRORKL = lt_e_errorkl
         E_EOVAR10 = lt_e_eovar10
         E_MEO = lt_e_meo
         E_EOOPT = lt_e_eoopt
         I_METH = lt_i_meth
         I_KLEV = lt_i_klev
         E_EONPV = lt_e_eonpv
         E_EOBAR = lt_e_eobar
         E_EOPOS = lt_e_eopos
         E_EOVAR = lt_e_eovar
         E_EOBVAR = lt_e_eobvar
         E_EODD = lt_e_eodd
. " RM_FIMA_EVAL




ABAP code using 7.40 inline data declarations to call FM RM_FIMA_EVAL

The below ABAP code uses the newer in-line data declarations. This allows you to see the coding differences/benefits of the later inline syntax. Please note some of the newer syntax below, such as the @DATA is not available until 4.70 EHP 8.

 
 
 
 
 
 
 
 
 
 
 
 
 
"SELECT single CHAR0008 FROM DATATYPE INTO @DATA(ld_i_taskname).
 
 
 
 
 
 
 
 


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!