Read Runtime Error
sap_get_dumpRetrieve a complete ABAP runtime error (short dump) with metadata and the full ST22 analysis text. Use the dump URI from sap_list_dumps to get the report.
Instructions
Read one ABAP runtime error (short dump) in full: metadata plus the formatted ST22 analysis text. Get the dump_uri from sap_list_dumps.
Args:
dump_uri (string): the 'uri' from a sap_list_dumps entry, passed through unchanged.
response_format.
Returns (json): { uri, errorId, title?, author?, exception?, terminatedProgram?, serverInstance?, datetime?, text, lineCount }. 'text' is the full ST22 report (error analysis, source extract, call stack).
Examples:
"Why did that dump happen?" -> sap_list_dumps first, then sap_get_dump with its uri. Error Handling:
404 -> the dump was reorganised (housekeeping) or the URI is wrong; re-run sap_list_dumps.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| dump_uri | Yes | Dump URI from sap_list_dumps (starts with /sap/bc/adt/runtime/dump/). Pass it verbatim — it contains encoded spaces. | |
| response_format | No | Output format: 'markdown' (human-readable, default) or 'json' (structured). | markdown |