Ansicht
Dokumentation

BAL_S_MFIL - Application Log: Message Filter Criteria

BAL_S_MFIL - Application Log: Message Filter Criteria

PERFORM Short Reference   rdisp/max_wprun_time - Maximum work process run time  
This documentation is copyright by SAP AG.
SAP E-Book

This structure contains message filter criteria, mainly message field RANGES such as:
- MSGNUMBER Message number in Application Log
- MSGID Message class (or work area)
- MSGNO Message number in message class
- MSGTY Message type
- DETLEVEL Level of detail
- PROBCLASS Problem class

You can also specify a combination of message class and message number (field MSGIDMSGNO).

Filter criteria for the following RANGES can be combined for the search for exceptions:
- EXCLS Name of exception class
- EXTXT Label for exception class
- MSGTY Message type
- DETLEVEL Level of detail
- PROBCLASS Problem class



==>Note
If several criteria are specified, they are related by a logical AND.

  • Example
    Search for all serious and very serious errors.
    ================================================================
    DATA:
    l_s_msg_filter TYPE bal_s_mfil,
    l_r_msgty TYPE bal_s_msty,
    l_r_probclass TYPE bal_s_prcl.

    * define message type
    l_r_msgty-option = 'EQ'.
    l_r_msgty-sign = 'I'.
    l_r_msgty-low = 'E'. "Error
    append l_r_msgty to l_s_msg_filter-msgty.
    * define problem class
    l_r_probclass-option = 'EQ'.
    l_r_probclass-sign = 'I'.
    l_r_probclass-low = '1'. "very serious messages
    append l_r_probclass to l_s_msg_filter-probclass.
    l_r_probclass-low = '2'. "serious messages
    append l_r_probclass to l_s_msg_filter-probclass.
    ===============================================================

Further information

Overview of the most important function groups

Quick start documentation

Application Log: Technical documentation






rdisp/max_wprun_time - Maximum work process run time   ROGBILLS - Synchronize billing plans  
This documentation is copyright by SAP AG.

Length: 2407 Date: 20240520 Time: 155202     sap01-206 ( 32 ms )