GET_MESSAGES_SUMMARY SAP Method Get Summary of Messages









Below is documentation, parameters and attributes of ABAP Method GET_MESSAGES_SUMMARY within SAP class IF_WSM_ACCESS_MONITOR. There is also a number of example ABAP code snipts to help you use the functionality of this method.

This method is available within SAP systems depending on your version and release level, you can view further information by entering the class name IF_WSM_ACCESS_MONITOR into the relevant SAP transactions such as SE24 or SE80, and then selecting the method you are interested in.


Method Type - Instance

This is an Instance Method so needs to be instantiated first before you can access any of the methods. I.e. you need to create a local variable of TYPE ref to the class.

The following technical details of method GET_MESSAGES_SUMMARY can also be found below:

  • Importing parameters
  • Exporting parameters
  • Changing parameters
  • Returning parameters
  • Exceptions
  • Coding Examples


Parameters of Method GET_MESSAGES_SUMMARY

.

NameTypeData TypeDescriptionDefault Value
FILTERImportingTYPE
SRT_MSELECT_FILTER
Message Filter
APPL_ERROR_LISTExportingTYPE
SRT_MSELECT_RESULT_T
List of Messages with 'Application Error'
CANCELLED_LISTExportingTYPE
SRT_MSELECT_RESULT_T
List of Messages with 'Cancelled' status
FINISHED_LISTExportingTYPE
SRT_MSELECT_RESULT_T
List of Messages with 'Finished' status
FORWARDED_LISTExportingTYPE
SRT_MSELECT_RESULT_T
ISOLATED_LISTExportingTYPE
SRT_MSELECT_RESULT_T
List of Messages with 'Isolated' status
SUMMARY_LISTExportingTYPE
SRT_MSUMMARY_RESULT_T
Message Summary Result - Table
SYSTEM_ERROR_LISTExportingTYPE
SRT_MSELECT_RESULT_T
List of Messages with 'System Error'
WAITING_LISTExportingTYPE
SRT_MSELECT_RESULT_T
List of Messages with 'Wait for Processing'



Exceptions of Method GET_MESSAGES_SUMMARY

APPL_ERROR_LISTExportingTYPE
SRT_MSELECT_RESULT_TList of Messages with 'Application Error'CANCELLED_LISTExportingTYPE
SRT_MSELECT_RESULT_TList of Messages with 'Cancelled' statusCX_WSM_ACCESS_MONITOR - WS Message Monitoring Exceptions

Example ABAP coding


DATA: lo_class TYPE REF TO IF_WSM_ACCESS_MONITOR.
DATA: lv_APPL_ERROR_LIST TYPE SRT_MSELECT_RESULT_T,
lv_CANCELLED_LIST TYPE SRT_MSELECT_RESULT_T,
lv_FILTER TYPE SRT_MSELECT_FILTER,
lv_FINISHED_LIST TYPE SRT_MSELECT_RESULT_T,
lv_FORWARDED_LIST TYPE SRT_MSELECT_RESULT_T,
lv_ISOLATED_LIST TYPE SRT_MSELECT_RESULT_T,
lv_SUMMARY_LIST TYPE SRT_MSUMMARY_RESULT_T,
lv_SYSTEM_ERROR_LIST TYPE SRT_MSELECT_RESULT_T,
lv_WAITING_LIST TYPE SRT_MSELECT_RESULT_T,
lv_other TYPE c.

CALL METHOD lo_class=>GET_MESSAGES_SUMMARY(
EXPORTING
FILTER = lv_FILTER
IMPORTING
APPL_ERROR_LIST = lv_APPL_ERROR_LIST
CANCELLED_LIST = lv_CANCELLED_LIST
FINISHED_LIST = lv_FINISHED_LIST
FORWARDED_LIST = lv_FORWARDED_LIST
ISOLATED_LIST = lv_ISOLATED_LIST
SUMMARY_LIST = lv_SUMMARY_LIST
SYSTEM_ERROR_LIST = lv_SYSTEM_ERROR_LIST
WAITING_LIST = lv_WAITING_LIST ).

Links to Related Class(s)

IF_WSM_A...
Full list of available SAP object classes

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!