SAP RV_MESSAGES_MAINTENANCE Function Module for NOTRANSL: Bearbeiten von Nachrichten









RV_MESSAGES_MAINTENANCE is a standard rv messages maintenance SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for NOTRANSL: Bearbeiten von Nachrichten 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 rv messages maintenance FM, simply by entering the name RV_MESSAGES_MAINTENANCE into the relevant SAP transaction such as SE37 or SE38.

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



Function RV_MESSAGES_MAINTENANCE 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 'RV_MESSAGES_MAINTENANCE'"NOTRANSL: Bearbeiten von Nachrichten
EXPORTING
* MIN_BILD = 'S' "Screen control
* MIN_OBJKY_TO = ' ' "Object Key To
* PI_OBJTYPE = ' ' "
* PI_PREVIEW = ' ' "
MIN_BTEXT = "
* MIN_CUA_TEXT = "
* MIN_KALSM = ' ' "
MIN_KAPPL = "
MIN_OBJKY = "Object Key
* MIN_T185 = "
* MIN_T185F = "
* MIN_T185V = "

IMPORTING
MEX_FCODE = "
MEX_T185F = "
MEX_T185V = "
MEX_UPDAT = "
CANCELLED = "

TABLES
MTB_PART = "
.




Customer Function user exits

Below is a list of CUSTOMER FUNCTION exit user exits that are available within this program and maybe relevant for this FM.
EXIT_SAPLV61B_001 WFMC: Find Fax Number
EXIT_SAPLV61B_002 WFMC: Set Print Parameters

IMPORTING Parameters details for RV_MESSAGES_MAINTENANCE

MIN_BILD - Screen control

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

MIN_OBJKY_TO - Object Key To

Data type: NAST-OBJKY
Default: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)

PI_OBJTYPE -

Data type: NAST-OBJTYPE
Default: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)

PI_PREVIEW -

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

MIN_BTEXT -

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

MIN_CUA_TEXT -

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

MIN_KALSM -

Data type: T683S-KALSM
Default: ' '
Optional: Yes
Call by Reference: No ( called with pass by value option)

MIN_KAPPL -

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

MIN_OBJKY - Object Key

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

MIN_T185 -

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

MIN_T185F -

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

MIN_T185V -

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

EXPORTING Parameters details for RV_MESSAGES_MAINTENANCE

MEX_FCODE -

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

MEX_T185F -

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

MEX_T185V -

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

MEX_UPDAT -

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

CANCELLED -

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

TABLES Parameters details for RV_MESSAGES_MAINTENANCE

MTB_PART -

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

Copy and paste ABAP code example for RV_MESSAGES_MAINTENANCE 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:
lv_min_bild  TYPE STRING, "   'S'
lt_mtb_part  TYPE STANDARD TABLE OF MSGPA, "   
lv_mex_fcode  TYPE MSGPA, "   
lv_min_objky_to  TYPE NAST-OBJKY, "   SPACE
lv_pi_objtype  TYPE NAST-OBJTYPE, "   SPACE
lv_pi_preview  TYPE CHAR1, "   SPACE
lv_mex_t185f  TYPE T185F, "   
lv_min_btext  TYPE DV70A-BTEXT, "   
lv_mex_t185v  TYPE T185V, "   
lv_min_cua_text  TYPE T185V, "   
lv_mex_updat  TYPE T185V, "   
lv_min_kalsm  TYPE T683S-KALSM, "   ' '
lv_cancelled  TYPE CHAR1, "   
lv_min_kappl  TYPE NAST-KAPPL, "   
lv_min_objky  TYPE NAST-OBJKY, "   
lv_min_t185  TYPE T185, "   
lv_min_t185f  TYPE T185F, "   
lv_min_t185v  TYPE T185V. "   

  CALL FUNCTION 'RV_MESSAGES_MAINTENANCE'  "NOTRANSL: Bearbeiten von Nachrichten
    EXPORTING
         MIN_BILD = lv_min_bild
         MIN_OBJKY_TO = lv_min_objky_to
         PI_OBJTYPE = lv_pi_objtype
         PI_PREVIEW = lv_pi_preview
         MIN_BTEXT = lv_min_btext
         MIN_CUA_TEXT = lv_min_cua_text
         MIN_KALSM = lv_min_kalsm
         MIN_KAPPL = lv_min_kappl
         MIN_OBJKY = lv_min_objky
         MIN_T185 = lv_min_t185
         MIN_T185F = lv_min_t185f
         MIN_T185V = lv_min_t185v
    IMPORTING
         MEX_FCODE = lv_mex_fcode
         MEX_T185F = lv_mex_t185f
         MEX_T185V = lv_mex_t185v
         MEX_UPDAT = lv_mex_updat
         CANCELLED = lv_cancelled
    TABLES
         MTB_PART = lt_mtb_part
. " RV_MESSAGES_MAINTENANCE




ABAP code using 7.40 inline data declarations to call FM RV_MESSAGES_MAINTENANCE

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.

DATA(ld_min_bild) = 'S'.
 
 
 
"SELECT single OBJKY FROM NAST INTO @DATA(ld_min_objky_to).
DATA(ld_min_objky_to) = ' '.
 
"SELECT single OBJTYPE FROM NAST INTO @DATA(ld_pi_objtype).
DATA(ld_pi_objtype) = ' '.
 
DATA(ld_pi_preview) = ' '.
 
 
"SELECT single BTEXT FROM DV70A INTO @DATA(ld_min_btext).
 
 
 
 
"SELECT single KALSM FROM T683S INTO @DATA(ld_min_kalsm).
DATA(ld_min_kalsm) = ' '.
 
 
"SELECT single KAPPL FROM NAST INTO @DATA(ld_min_kappl).
 
"SELECT single OBJKY FROM NAST INTO @DATA(ld_min_objky).
 
 
 
 


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!