sap-hana-cloud

sap-hana-cloud is a skill for Claude Code, Codex from efeumutaslan/SAP-SKILLS. It costs 89 tokens per session (2,362 once invoked), scanned A, original, MIT.

A guide to developing and administering SAP HANA Cloud databases, including SQL, procedures, calculation views, and HDI containers. HDI containers are managed spaces that hold database objects used by applications.

In plain words
What is it for?
Use it to write SQLScript, create calculation views and HDI objects, optimize HANA SQL, manage spatial, graph, or JSON data, and configure storage tiering.
Why use it?
It helps teams create, manage, and tune HANA data structures while choosing the right tools for application data, analytics, and data tiering.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Use it to write SQLScript, create calculation views and HDI objects, optimize HANA SQL, manage spatial, graph, or JSON data, and configure storage tiering.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/efeumutaslan/sap-skills/sap-hana-cloud
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 efeumutaslan/SAP-SKILLS --skill sap-hana-cloud
Clone the repo
git clone --depth 1 https://github.com/efeumutaslan/SAP-SKILLS

Made for: Claude Code, Codex.

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 sap-hana-cloud

README.md
[![agentmods](https://agentmods.dev/badge/skills/efeumutaslan/sap-skills/sap-hana-cloud/github.svg)](https://agentmods.dev/skills/efeumutaslan/sap-skills/sap-hana-cloud)
Your own site
<a href="https://agentmods.dev/skills/efeumutaslan/sap-skills/sap-hana-cloud"><img src="https://agentmods.dev/badge/skills/efeumutaslan/sap-skills/sap-hana-cloud/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for sap-hana-cloud

Your own site · 80×15
<a href="https://agentmods.dev/skills/efeumutaslan/sap-skills/sap-hana-cloud"><img src="https://agentmods.dev/badge/skills/efeumutaslan/sap-skills/sap-hana-cloud.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 89 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,362 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.00089 $0.02362
Opus 5 $0.00044 $0.01181
Sonnet 5 $0.00018 $0.00472
Haiku 4.5 $0.00009 $0.00236

Measured 11d ago against content hash 5007dbe34459, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-11, from the pricing page.

Security

Grade A, and why

sap-hana-cloud 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 11d 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.

skills/sap-hana-cloud/SKILL.md · 272 lines

How it starts

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

SAP HANA Cloud Database Development

  • sap-rap-comprehensive — CDS views consumed by HANA models
  • sap-s4hana-extensibility — Custom CDS/HANA artifacts in S/4HANA extensions
  • sap-business-ai-joule — Vector engine for AI/RAG scenarios
  • sap-hana-tools — hdbsql CLI, HDI management, and HANA client tooling
  • sap-cap-advanced — CAP with HANA Cloud native artifacts

Quick Start

Choose your development approach:

Scenario Tool Artifact
BTP CAP application SAP Business Application Studio .hdbcds, .hdbprocedure in db/src/
Native HANA development SAP HANA Database Explorer HDI container objects
Data warehouse / analytics SAP HANA Cloud Central Calculation views, flowgraphs
Data tiering HANA Cloud Central Data Lake / Native Storage Extension

Minimal HDI procedure:

PROCEDURE "mySchema.myProc" (
  IN iv_customer_id NVARCHAR(10),
  OUT et_orders TABLE (order_id NVARCHAR(10), amount DECIMAL(15,2))
)
LANGUAGE SQLSCRIPT
SQL SECURITY INVOKER
READS SQL DATA
AS
BEGIN
  et_orders = SELECT order_id, amount
              FROM "ORDERS"
              WHERE customer_id = :iv_customer_id;
END;

Core Concepts

HDI Containers (HANA Deployment Infrastructure)

  • Schema-less development: Objects reference each other by name, HDI assigns runtime schema
  • Build plugins: Each artifact type (.hdbcds, .hdbprocedure, .hdbtable) has a build plugin
  • Container groups: Isolate tenants; cross-container access via synonyms + .hdbgrants
  • Undeploy whitelist: undeploy.json controls what can be removed on redeploy

Multi-Model Engines

Engine Use Case Key Type
Relational Standard OLTP/OLAP TABLE, VIEW
Document Store Schema-flexible JSON COLLECTION
Graph Network/relationship analysis GRAPH WORKSPACE
Spatial Geospatial queries ST_GEOMETRY, ST_POINT
Vector AI embeddings / similarity search REAL_VECTOR

Read the full file on GitHub · 272 lines

Files

What ships with it

2 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

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. 11d ago First seen · 272 lines · 89 tokens per session scan A 5007dbe34459

Subscribe to this mod's changes

sap-hana-cloud is a skill published in the GitHub repository efeumutaslan/SAP-SKILLS (5 stars, last pushed 5mo ago), licensed MIT. It adds 89 tokens to every session and 2,362 once invoked, about $0.0004 per session on Opus 5. 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-31.

Related

Other skills, from other repositories

sap-background-jobs

Investigate SAP background jobs, including failed or aborted jobs, job status, job steps, job logs, runtime dumps, TBTCO, TBTCP, and TBTCJOBLOG0-9.

marcellourbani/vscode_abap_remote_fs · 46 tokens

abap-performance-hana

ABAP performance best practices for S/4HANA and HANA database systems.Use when writing or reviewing ABAP code on HANA-based systems.IMPORTANT: First use the SAP system info tool to check the system type — if the system is ECC or runs on a traditional database (Oracle, DB2, MSSQL), load the abap-performance-ecc skill…

marcellourbani/vscode_abap_remote_fs · 0 tokens

database-patterns

Use when designing PostgreSQL + Redis data models, indexes, caching strategies, JSONB usage, tiered storage, or cache consistency contracts.

majiayu000/spellbook · 32 tokens

codex-log-guard

Diagnose excessive Codex local SQLite diagnostic log writes with read-only evidence by default. Use when a user mentions logs2.sqlite, logs2.sqlite-wal, blockloginserts, SSD/TBW wear, or explicitly asks to protect, clean up, verify, or restore Codex diagnostic logging.

majiayu000/spellbook · 68 tokens

data-contract-migrations

Design and verify data contracts, schema changes, migrations, rollbacks, backfills, compatibility windows, tenant isolation, and API-to-database field mapping. Use when changing database schema, event payloads, persisted documents, analytics tables, multi-tenant data boundaries, or any user-visible data contract where…

majiayu000/spellbook · 75 tokens

cds-view-entities

Help with CDS (Core Data Services) view entity development including data modeling, annotations, associations, compositions, access controls, aggregate expressions, built-in functions, and input parameters. Use when users ask about CDS views, CDS view entities, CDS annotations, CDS associations, CDS compositions, CDS…

likweitan/abap-skills · 153 tokens