Delete ABAP Debugger Breakpoints
sap_delete_breakpointsClear external breakpoints in SAP ABAP by specifying their IDs, or remove all breakpoints at once to reset debugging state.
Instructions
Delete specific external breakpoints, or clear the whole external breakpoint set.
Args:
ids (string[]): structured ids from sap_list_breakpoints / sap_set_breakpoint. Omit to clear everything.
response_format.
Returns (json): { deleted, message }.
Examples:
"Clear all my breakpoints" -> (no ids). Sends an empty full-set sync, which clears the server side even for breakpoints this server no longer remembers (e.g. after a restart) — this is the reliable way to be sure nothing is left.
"Delete that breakpoint" -> ids=["KIND=0.SOURCETYPE=ABAP.MAIN_PROGRAM=…LINE_NR=12"]. Notes:
'deleted' counts what this server knew about; the no-ids path may remove more on the server.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| ids | No | Specific breakpoint IDs to delete (the 'id' from sap_list_breakpoints / sap_set_breakpoint). Omit to clear the whole external breakpoint set for this identity. | |
| response_format | No | Output format: 'markdown' (human-readable, default) or 'json' (structured). | markdown |