abap-performance-ecc

abap-performance-ecc is a skill for Claude Code from marcellourbani/vscode_abap_remote_fs. It costs 0 tokens per session (2,058 once invoked), scanned A, original, MIT.

A set of ABAP performance guidelines for SAP ECC systems using traditional databases such as Oracle, DB2, Microsoft SQL Server, or MaxDB. SAP ECC is the older SAP business system, unlike S/4HANA.

In plain words
What is it for?
Use it when writing or reviewing ABAP code on non-HANA SAP systems, especially for improving SELECT statements, joins, buffering, and where complex logic should run.
Why use it?
It helps avoid slow database access by reducing unnecessary round trips, selecting only needed fields, filtering queries, and keeping joins suitable for traditional databases.

Skill for Claude Code

Written for Claude Code: disable-model-invocation in frontmatter.

Good fit Use it when writing or reviewing ABAP code on non-HANA SAP systems, especially for improving SELECT statements, joins, buffering, and where complex logic should run.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/marcellourbani/vscode_abap_remote_fs/abap-performance-ecc
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add marcellourbani/vscode_abap_remote_fs --skill abap-performance-ecc
Clone the repo
git clone --depth 1 https://github.com/marcellourbani/vscode_abap_remote_fs

Made for: Claude Code.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for abap-performance-ecc

README.md
[![agentmods](https://agentmods.dev/badge/skills/marcellourbani/vscode_abap_remote_fs/abap-performance-ecc.svg)](https://agentmods.dev/skills/marcellourbani/vscode_abap_remote_fs/abap-performance-ecc)
Your own site
<a href="https://agentmods.dev/skills/marcellourbani/vscode_abap_remote_fs/abap-performance-ecc"><img src="https://agentmods.dev/badge/skills/marcellourbani/vscode_abap_remote_fs/abap-performance-ecc.svg" alt="Measured on agentmods" height="20"></a>
Per session 0 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,058 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00000 $0.02058
Opus 5 $0.00000 $0.01029
Sonnet 5 $0.00000 $0.00412
Haiku 4.5 $0.00000 $0.00206

Measured 7d ago against content hash 4aca21a28c7e, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-07, from the pricing page.

Security

Grade A, and why

abap-performance-ecc scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 7d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

client/media/skills/abap-performance-ecc/SKILL.md · 215 lines

How it starts

The opening of the file, as written. The whole thing — 215 lines — stays where its author put it; the contents beside it link to each section on GitHub.

ABAP Performance — ECC / Traditional Database

These rules apply to SAP ECC systems running on traditional databases (Oracle, DB2, MSSQL, MaxDB).

Before using this skill: Call the SAP system info tool. If the system is S/4HANA or HANA DB, use the abap-performance-hana skill instead.

Core philosophy on ECC: Minimize database round-trips. Keep SQL simple — traditional DBs don't optimize complex expressions well. Buffer aggressively. Move complex logic to ABAP.


Database Access

SELECT Patterns

  • Select only the fields you need. Never use SELECT * in production code.

    " good
    SELECT matnr maktx FROM mara INTO TABLE itab.
    " bad
    SELECT * FROM mara INTO TABLE itab.
    
  • Always use a WHERE clause. Never read an entire table without filtering.

  • Prefer JOINs over nested SELECTs. One round-trip is always better than N.

    " good — single round-trip
    SELECT m~matnr t~maktx
      FROM mara AS m
      INNER JOIN makt AS t ON t~matnr = m~matnr
      WHERE m~mtart = material_type
        AND t~spras = sy-langu
      INTO TABLE materials.
    
  • BUT keep JOINs simple on ECC. Avoid more than 3-4 table JOINs — traditional DBs may generate poor execution plans. Split into two SELECTs if needed.

  • Use FOR ALL ENTRIES when JOINs aren't possible. Always check driver table is not empty.

    IF itab[] IS NOT INITIAL.
      SELECT matnr werks FROM marc
        FOR ALL ENTRIES IN itab
        WHERE matnr = itab-matnr
        INTO TABLE plant_data.
    ENDIF.
    
  • FOR ALL ENTRIES removes duplicates from results. Add extra key fields if you need duplicates.

  • Use UP TO n ROWS when you only need a limited result set.

  • ECC-specific: Avoid subqueries, CASE expressions, and complex SQL functions in SELECT — traditional DBs often create poor plans for these. Fetch data and process in ABAP.

  • ECC-specific: Be careful with ORDER BY on large result sets — it can be expensive. If you need sorted data, consider fetching into a SORTED table type or sorting in ABAP.

Read the full file on GitHub · 215 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 7d ago First seen · 215 lines · 0 tokens per session scan A 4aca21a28c7e

Subscribe to this mod's changes

abap-performance-ecc is a skill published in the GitHub repository marcellourbani/vscode_abap_remote_fs (388 stars, last pushed 5d ago), licensed MIT. It costs nothing until one of its globs matches a file; then it loads 2,058 tokens. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other skills, from other repositories

oh-my-posh

Install, configure, or troubleshoot Oh My Posh/ohmyposh: shell init, themes, segments, Nerd Font icons, and prompt setup on PowerShell, zsh, bash, or fish.

JanDeDobbeleer/oh-my-posh · 47 tokens

code-changes

Orchestration workflow for any task that ends in code changes: issue analysis, pull request review, feature implementation, bug fixes, refactors, or fleshing out an idea. MUST be invoked at the start of such a task, before reading or writing any code. Defines how to analyze first, gate on user approval, plan, pick the…

JanDeDobbeleer/oh-my-posh · 88 tokens

mma-investigator

Expert system for investigating MMA (Multi-Metric Allocator) behavior on CockroachDB clusters. Helps oncall engineers diagnose load imbalances, understand rebalancing decisions, and identify why MMA did or didn't act.

cockroachdb/cockroach · 47 tokens

oss-find-real-issues

Find actual code issues in a repo that aren't listed in GitHub issues. missing tests, inconsistent patterns, outdated dependencies, documentation gaps. Presents findings to the user for evaluation. Use when you want to make proactive contributions beyond existing issues, or when no good issues are available. Not for…

chiruu12/OSS-Skills · 80 tokens

oss-debug-ci

Debug CI failures in unfamiliar repo pipelines. Reads CI configs, fetches failure logs, classifies the failure type, and guides the user through diagnosing and fixing the issue. Use when CI fails on your PR in an OSS repo, when you don't understand a CI error, or when debugging GitHub Actions/CircleCI/other CI…

chiruu12/OSS-Skills · 91 tokens

zdx-diagnose-deeptrace

Run a ZDX deep trace diagnostics session to investigate network and device issues. Start new sessions, analyze web probe metrics, cloud path topology, device health, top processes, and event timelines to pinpoint root cause. Use when an administrator asks: 'Start a deep trace for this user', 'Analyze the diagnostics…

zscaler/zscaler-mcp-server · 96 tokens