Skip to main content
Glama

Explain ABAP Cloud / RAP release deltas

explain_abap_release
Read-onlyIdempotent

Check whether an ABAP, CDS, or RAP feature exists in a target release for writing or reviewing ABAP. Look up curated changes from 2502 to 2608 and ABAP Platform 2025.

Instructions

Look up what changed in ABAP Cloud, CDS, ABAP SQL, RAP, EML, ABAP Unit, ATC and the development tools across the 2502 to 2608 release trains plus ABAP Platform 2025 (SAP_BASIS 816), from a dated knowledge base bundled with this package. Each row carries an original summary, an optional syntax sketch, the release and ABAP release, the products it was verified for, the cited SAP source URL, and a confidence flag ("confirmed" = fact-checked, "reported" = single-source). Use this when you are about to write or review ABAP and need to know whether a language, CDS or RAP feature exists in the target release — for example before using CDS table entities as draft persistence, BUFFER ON, RAP change documents, global side effects, or a feature-control attribute. Filter by sinceRelease to see only what is new since the customer's current level. Rows flagged pre-2502 exist to stop an agent presenting an established feature (business events, late numbering, prechecks, bgPF) as a 2025-26 novelty. It does not connect to any SAP system, does not read release notes live, and is not a complete changelog — it is a curated snapshot (curated 2026-09-10) and the target system's own release notes stay authoritative. For released-API state of a specific object use check_released_api; for Clean Core levels and ATC vocabulary use search_sap_knowledge. Example: explain_abap_release({ "sinceRelease": "2605", "kind": "rap" }).

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
kindNoRestrict to one facet: "language", "cds", "sql", "rap", "testing", "atc", "tooling" or "eml". Use it to answer "what is new in RAP" without wading through tooling rows.
limitNoMaximum rows to return, 1 to 200; defaults to 60. Raise it only when you really want a full release dump.
topicNoFree-text topic matched against row ids, titles, keywords and summaries, e.g. "draft table entity", "side effects", "change documents". Omit it to browse a whole release or facet.
productNoRestrict to one product: "btp" (SAP BTP ABAP environment), "s4hc-public", "s4hc-private" or "onprem". Rows list the products their source actually verified.
sinceReleaseNoReturn only rows at this release or newer, chronologically: pre-2502, 2502, 2505, 2508, platform-2025, 2511, 2602, 2605, 2608. Use the customer's current level, e.g. "2508", to see what upgrading buys them.

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
deltasYesMatching release-delta rows, newest release first.
scopeNoteYesDated-knowledge caveat to repeat to the user.
truncatedYesTrue when more rows matched than were returned.
matchCountYesHow many rows matched before the limit was applied.
curatedDateYesDate the bundled knowledge base was curated.

Schema Changelog

Changes observed during successful MCP inspections.

  1. Addedv0.12.0

TDQS

A4.8/5.0
Behavior5/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already declare readOnly/idempotent/closed-world, and the description goes well beyond them: it discloses that the tool does not connect to any SAP system, does not read release notes live, is a curated snapshot dated 2026-09-10, is not a complete changelog, and that the target system's notes remain authoritative. It also describes per-row fields and the meaning of the 'confirmed'/'reported' confidence flag, which the annotations cannot convey.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Purpose, when-to-use, caveats, alternatives and an example are all front-loaded in a logical order, and the example call is a useful close. It is delivered as one dense paragraph, which makes the caveats and sibling pointers slightly harder to scan than bulleted structure would be.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a 5-parameter, zero-required lookup with an output schema, the description supplies everything an agent needs: scope, filter semantics, freshness/curation limits, confidence semantics, sibling routing and a concrete invocation. Return values are covered by the output schema yet are still summarized, leaving no material gap.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100%, so the baseline is 3. The description adds genuine intent beyond the schema: it explains that sinceRelease should be set to the customer's current level to see what an upgrade buys, and it explains why pre-2502 rows exist (to prevent mislabeling established features as novelties). The worked example further clarifies parameter interaction.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description states a concrete verb ('Look up what changed') and enumerates the exact resource scope (ABAP Cloud, CDS, ABAP SQL, RAP, EML, ABAP Unit, ATC, tooling across named release trains). It explicitly carves out its niche against siblings by pointing to check_released_api and search_sap_knowledge for adjacent questions, so an agent can distinguish it without opening the schema.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines5/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

It gives explicit when-to-use ('when you are about to write or review ABAP and need to know whether a feature exists in the target release'), concrete trigger scenarios (draft persistence, BUFFER ON, RAP change documents, side effects, feature-control attributes), and named alternatives with their selecting conditions (check_released_api for released-API state, search_sap_knowledge for Clean Core/ATC vocabulary).

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.