SAP BAPI_SYSTEM_MTE_SETMLPROP Function Module for Set the Specific Message Log Properties









BAPI_SYSTEM_MTE_SETMLPROP is a standard bapi system mte setmlprop SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Set the Specific Message Log Properties 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 bapi system mte setmlprop FM, simply by entering the name BAPI_SYSTEM_MTE_SETMLPROP into the relevant SAP transaction such as SE37 or SE38.

Function Group: SALX
Program Name: SAPLSALX
Main Program: SAPLSALX
Appliation area: S
Release date: 15-Jan-1999
Mode(Normal, Remote etc): Remote-Enabled
Update:



Function BAPI_SYSTEM_MTE_SETMLPROP 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 'BAPI_SYSTEM_MTE_SETMLPROP'"Set the Specific Message Log Properties
EXPORTING
TID = "MTE ID (TID)
* KEEP_LINE_TYPE = "Determines Which Lines to Retain
* KEEP_LINE_MAX = "Maximum Number of Lines
EXTERNAL_USER_NAME = "Name of the SAP-External User
* VARIANT_NAME = "Variant Used
* TID_SPECIFIC = ' ' "'X' if Only the MTE Should Be Changed
* RAISE_VALUE = "Maximum Value Before Alert is Triggered
* RAISE_SEVERITY = "Maximum Severity Before Alert is Triggered
* ACTUAL_MSG_MODE = "Message Mode
* ACTUAL_MSG_MAX_SEV = "Maximum Severity
* MAX_ALERTS_PRO_ID = "Maximum Number of Alerts per ID

IMPORTING
RETURN = "Return Messages

TABLES
* FILTER = "Defines the Filter Set
.



IMPORTING Parameters details for BAPI_SYSTEM_MTE_SETMLPROP

TID - MTE ID (TID)

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

KEEP_LINE_TYPE - Determines Which Lines to Retain

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

KEEP_LINE_MAX - Maximum Number of Lines

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

EXTERNAL_USER_NAME - Name of the SAP-External User

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

VARIANT_NAME - Variant Used

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

TID_SPECIFIC - 'X' if Only the MTE Should Be Changed

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

RAISE_VALUE - Maximum Value Before Alert is Triggered

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

RAISE_SEVERITY - Maximum Severity Before Alert is Triggered

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

ACTUAL_MSG_MODE - Message Mode

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

ACTUAL_MSG_MAX_SEV - Maximum Severity

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

MAX_ALERTS_PRO_ID - Maximum Number of Alerts per ID

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

EXPORTING Parameters details for BAPI_SYSTEM_MTE_SETMLPROP

RETURN - Return Messages

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

TABLES Parameters details for BAPI_SYSTEM_MTE_SETMLPROP

FILTER - Defines the Filter Set

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

Copy and paste ABAP code example for BAPI_SYSTEM_MTE_SETMLPROP 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_tid  TYPE BAPITID, "   
lt_filter  TYPE STANDARD TABLE OF BAPIMLFLT, "   
lv_return  TYPE BAPIRET2, "   
lv_keep_line_type  TYPE BAPIMLPROP-KEEPLINTYP, "   
lv_keep_line_max  TYPE BAPIMLPROP-KEEPLINMAX, "   
lv_external_user_name  TYPE BAPIXMLOGR-EXTUSER, "   
lv_variant_name  TYPE BAPIVARINT-NAME, "   
lv_tid_specific  TYPE BAPIPARAMS-BOOL_PARA, "   ' '
lv_raise_value  TYPE BAPIMLPROP-RAISEVALUE, "   
lv_raise_severity  TYPE BAPIMLPROP-RAISESEVER, "   
lv_actual_msg_mode  TYPE BAPIMLPROP-ACTMSGMODE, "   
lv_actual_msg_max_sev  TYPE BAPIMLPROP-ACTMSGMAXS, "   
lv_max_alerts_pro_id  TYPE BAPIMLPROP-MAXALPROID. "   

  CALL FUNCTION 'BAPI_SYSTEM_MTE_SETMLPROP'  "Set the Specific Message Log Properties
    EXPORTING
         TID = lv_tid
         KEEP_LINE_TYPE = lv_keep_line_type
         KEEP_LINE_MAX = lv_keep_line_max
         EXTERNAL_USER_NAME = lv_external_user_name
         VARIANT_NAME = lv_variant_name
         TID_SPECIFIC = lv_tid_specific
         RAISE_VALUE = lv_raise_value
         RAISE_SEVERITY = lv_raise_severity
         ACTUAL_MSG_MODE = lv_actual_msg_mode
         ACTUAL_MSG_MAX_SEV = lv_actual_msg_max_sev
         MAX_ALERTS_PRO_ID = lv_max_alerts_pro_id
    IMPORTING
         RETURN = lv_return
    TABLES
         FILTER = lt_filter
. " BAPI_SYSTEM_MTE_SETMLPROP




ABAP code using 7.40 inline data declarations to call FM BAPI_SYSTEM_MTE_SETMLPROP

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 KEEPLINTYP FROM BAPIMLPROP INTO @DATA(ld_keep_line_type).
 
"SELECT single KEEPLINMAX FROM BAPIMLPROP INTO @DATA(ld_keep_line_max).
 
"SELECT single EXTUSER FROM BAPIXMLOGR INTO @DATA(ld_external_user_name).
 
"SELECT single NAME FROM BAPIVARINT INTO @DATA(ld_variant_name).
 
"SELECT single BOOL_PARA FROM BAPIPARAMS INTO @DATA(ld_tid_specific).
DATA(ld_tid_specific) = ' '.
 
"SELECT single RAISEVALUE FROM BAPIMLPROP INTO @DATA(ld_raise_value).
 
"SELECT single RAISESEVER FROM BAPIMLPROP INTO @DATA(ld_raise_severity).
 
"SELECT single ACTMSGMODE FROM BAPIMLPROP INTO @DATA(ld_actual_msg_mode).
 
"SELECT single ACTMSGMAXS FROM BAPIMLPROP INTO @DATA(ld_actual_msg_max_sev).
 
"SELECT single MAXALPROID FROM BAPIMLPROP INTO @DATA(ld_max_alerts_pro_id).
 


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!