getMessages
Fetch ABAP message class texts (SE91) with numbers, content, and long-text indicators, filtered by range, specific numbers, or text search.
Instructions
Read the messages of a message class (SE91): number, text, and whether the message is self-explanatory or has a long text. The messages live inside the class document, so this is the only way to see them - objectStructure on the same class shows the metadata alone. Standard classes are large (class 00 has 875 messages), so pass fromNumber/toNumber or numbers to narrow it down.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| search | No | Only messages whose text contains this (case-insensitive). | |
| numbers | No | Only these message numbers, e.g. ["001","042"]. Leading zeros are added for you. | |
| toNumber | No | Highest message number to return, inclusive. | |
| className | Yes | Message class, e.g. ZAPP_NOCOND. | |
| fromNumber | No | Lowest message number to return, inclusive. | |
| maxMessages | No | Cap on the messages returned, default 200. The answer says when it was cut. |