SAP RM_EVAL_PROCESS_TASK Function Module for Parallel Processing: Processing of a Separate Task









RM_EVAL_PROCESS_TASK is a standard rm eval process task SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Parallel Processing: Processing of a Separate Task 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 eval process task FM, simply by entering the name RM_EVAL_PROCESS_TASK into the relevant SAP transaction such as SE37 or SE38.

Function Group: RMR3
Program Name: SAPLRMR3
Main Program: SAPLRMR3
Appliation area: F
Release date: N/A
Mode(Normal, Remote etc): Remote-Enabled
Update:



Function RM_EVAL_PROCESS_TASK 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_EVAL_PROCESS_TASK'"Parallel Processing: Processing of a Separate Task
EXPORTING
SPARA = "
TSKNAME = "
* MDLOG_ID = "

TABLES
I_FOB = "
* E_EOGAP = "
* E_EOAMORT = "
* E_EOOBJGAP = "
* E_EOOBJAMORT = "
E_ERROR = "
* E_ERRORKL = "
* E_EOVAR10 = "RM Results Object for P+L 10 Times per BP
* E_EOOPT = "RM Add. Results Object for Options
I_METH = "
* I_KLEV = "
* E_EONPV = "
* E_EOBAR = "
* E_EOPOS = "
* E_EOVAR = "
* E_EOBVAR = "
* E_EODD = "
.



IMPORTING Parameters details for RM_EVAL_PROCESS_TASK

SPARA -

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

TSKNAME -

Data type: DATATYPE-CHAR0008
Optional: No
Call by Reference: No ( called with pass by value option)

MDLOG_ID -

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

TABLES Parameters details for RM_EVAL_PROCESS_TASK

I_FOB -

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

E_EOGAP -

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_EOOBJGAP -

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_EOOPT - RM Add. Results Object for 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_EVAL_PROCESS_TASK 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, "   
lt_e_eogap  TYPE STANDARD TABLE OF JBRSAVEGAP, "   
lt_e_eoamort  TYPE STANDARD TABLE OF JBRBPAMORTRES, "   
lt_e_eoobjgap  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_eoopt  TYPE STANDARD TABLE OF VTVEOOPT, "   
lt_i_meth  TYPE STANDARD TABLE OF VTVFIMA, "   
lv_tskname  TYPE DATATYPE-CHAR0008, "   
lt_i_klev  TYPE STANDARD TABLE OF KLEV, "   
lv_mdlog_id  TYPE INDX_SRTFD, "   
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_EVAL_PROCESS_TASK'  "Parallel Processing: Processing of a Separate Task
    EXPORTING
         SPARA = lv_spara
         TSKNAME = lv_tskname
         MDLOG_ID = lv_mdlog_id
    TABLES
         I_FOB = lt_i_fob
         E_EOGAP = lt_e_eogap
         E_EOAMORT = lt_e_eoamort
         E_EOOBJGAP = lt_e_eoobjgap
         E_EOOBJAMORT = lt_e_eoobjamort
         E_ERROR = lt_e_error
         E_ERRORKL = lt_e_errorkl
         E_EOVAR10 = lt_e_eovar10
         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_EVAL_PROCESS_TASK




ABAP code using 7.40 inline data declarations to call FM RM_EVAL_PROCESS_TASK

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_tskname).
 
 
 
 
 
 
 
 
 


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!