List Runtime Errors (ST22)
sap_list_dumpsRetrieve recent ABAP runtime errors (ST22 short dumps) with error ID, program, user, and time, plus a URI to fetch full dump details. Filter by date range or user to quickly diagnose system failures.
Instructions
List recent ABAP runtime errors (ST22 short dumps): error ID, terminated program, user, time, and the dump URI for sap_get_dump.
Args:
max_items (number): 1-100 (default 20).
from_date / to_date (string): YYYYMMDDHHMMSS window.
user (string): only dumps caused by this user.
response_format.
Returns (json): { count, dumps: [{ errorId, program?, user, published, shortText?, uri }], filteredBy? }. Pass 'uri' verbatim to sap_get_dump — it contains encoded characters.
Examples:
"Did anything dump today?" -> from_date='20260727000000'.
"Show my last 5 dumps" -> max_items=5, user='DEVELOPER'. Notes:
from_date/to_date are the only server-side filters. The server returns a fixed page of the most recent dumps regardless of max_items, so user filtering and max_items are applied to that page here — use from_date/to_date when hunting older dumps.
Dumps are reorganised by housekeeping jobs, so old entries eventually disappear.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| user | No | Filter by the user who caused the dump. | |
| to_date | No | Only dumps at/before this timestamp, format YYYYMMDDHHMMSS. | |
| from_date | No | Only dumps at/after this timestamp, format YYYYMMDDHHMMSS. | |
| max_items | No | Maximum dumps to fetch (1-100, default 20). | |
| response_format | No | Output format: 'markdown' (human-readable, default) or 'json' (structured). | markdown |