Atc Cloudification logo

Atc Cloudification

Community
likweitan
atc-cloudification

Configure ATC clean core and Cloud Readiness checks using the SAP Cloudification Repository, and map ATC findings to clean core levels (A, B, C, D). Use when users ask about ATC check variants for cloud readiness, clean core compliance, clean core levels, released/classic/internal/noAPI object classification, cloudification repository setup, objectReleaseInfo or objectClassifications JSON files, ATC exemptions, changelog for SAP objects, SAP Cloud ERP or SAP Cloud ERP Private API validation, or migrating custom code to ABAP Cloud. Triggers include "configure ATC cloud readiness", "set up clean core check", "cloudification repository URL", "released APIs check", "which level is this ATC finding", "ATC priority 1 clean core", "ATC exemption", "changelog for SAP objects", or "which JSON file for my S/4HANA version".

Overview

Publisherlikweitan
Repositoryabap-skills
Skill nameatc-cloudification
Stars
64
Forks
15
Bundled files
1
LicenseMIT
Links
  • Markdown instructions

    A SKILL.md file the model loads on demand, so it only costs tokens when a request actually matches.

  • Works with any LLM

    AI skills are plain Markdown, not provider-specific code, so this works with GPT, Claude, Gemini, Grok, or a local model.

  • 1 bundled files

    Scripts, templates, and references the model can read while it works. Files are read-only and never executed.

  • Open source

    Published by likweitan on GitHub. Read the source before you install it.

Installation

Install the Atc Cloudification AI skill in TypingMind to use it with any LLM, or drop it into another agent that reads SKILL.md.

1

Install in TypingMind

TypingMind installs a skill straight from its GitHub folder — it reads SKILL.md, bundles the resource files, and stores the result locally.

  1. Open the app and go to Plugins → Skills.
  2. Choose "Install from GitHub".
  3. Paste the skill folder URL below and confirm.
  4. Enable the skill in any chat where you want it available.
Plugins → Skills → Add skill → From GitHub URL, then paste the folder URL and press Continue.
2

Install in another agent

Any agent that reads the Agent Skills format can use this skill — copy the folder into that agent's skills directory.

Claude Code — .claude/skills
git clone --depth 1 https://github.com/likweitan/abap-skills.git /tmp/abap-skills
mkdir -p .claude/skills
cp -r /tmp/abap-skills/skills/atc-cloudification .claude/skills/atc-cloudification
Restart Claude Code after copying so it picks up the new skill.

Use it in TypingMind

Enable Atc Cloudification in any TypingMind chat and the model takes it from there. Its name and description sit in the system prompt, and the moment a request matches, the model loads the full instructions itself — you never invoke it by hand, and it costs no tokens until it is actually used.

The model loads Atc Cloudification on its own as soon as a request matches it.

Works with any AI model

AI skills are plain Markdown instructions rather than provider-specific code, so Atc Cloudification is not tied to the model it was written for. Install it once in TypingMind and use it with GPT-5, Claude, Gemini, Grok, DeepSeek, Mistral, Llama, or a local model you run yourself — all on your own API keys.

  • Loaded only when it is needed

    The system prompt carries just the name and description. The instructions are fetched on the first matching request, so an idle skill costs nothing.

  • Switch models mid-chat

    Because the skill is instructions rather than code, changing model does not break it — the next model reads the same SKILL.md.

Skill instructions

This is the SKILL.md content the model loads. Read it before installing — a skill is instructions your model will follow.

ATC Clean Core & Cloudification Repository Checks

Configure ABAP Test Cockpit (ATC) clean core checks against the SAP Cloudification Repository, and map findings to clean core levels (A, B, C, D) for governance and remediation planning.

The clean core level concept supersedes the former 3-tier extensibility model. ATC is the governance tool that makes levels measurable: priority 1 → Level D, priority 2 → Level C, priority 3 → Level B, no finding → Level A.

Overview

The SAP Cloudification Repository contains the release state and clean core classification of SAP objects. Its JSON files serve as ATC check content, enabling customers and partners to analyse custom code across all ECC and S/4HANA releases.

Quick Reference

Read references/quick-reference.md for:

  • JSON file URLs for each target product and version
  • ATC check variant configuration steps
  • Available JSON files and their purpose
  • SAP Notes required for setup

Configuration by Target Product

SAP Cloud ERP

  1. Activate in your ATC check variant: "Cloud Readiness"Usage of Released APIs (Cloudification Repository)
  2. In the check attributes, enter the URL:
    https://raw.githubusercontent.com/SAP/abap-atc-cr-cv-s4hc/main/src/objectReleaseInfoLatest.json

SAP Cloud ERP Private

  1. Activate in your ATC check variant: "Clean Core"Usage of Released APIs (Cloudification Repository)
  2. In the check attributes, enter the URL for your version:
    • Latest version: https://raw.githubusercontent.com/SAP/abap-atc-cr-cv-s4hc/main/src/objectReleaseInfo_PCELatest.json
    • Specific release: Replace PCELatest with the version, e.g. PCE2025_0 for Release 2025 FPS00

New Clean Core Check (Note 3565942)

For the newer ATC checks "Usage of APIs" and "Allowed Enhancement Technologies", use:

https://raw.githubusercontent.com/SAP/abap-atc-cr-cv-s4hc/main/src/objectClassifications_SAP.json

Clean Core Levels and Object Classification

Extensions are classified into clean core levels (A–D) based on the SAP objects they consume. An extension takes the lowest level of any object it uses.

The clean core level concept supersedes the former 3-tier extensibility model.

Clean Core LevelSAP object qualifierMeaningATC finding
Level A[Released] remote API, local API, extension pointGoverned by a formal stability contract. Target state for all new development.No finding
Level B[Classic] SAP API, SAP extension pointSAP-nominated classic APIs and frameworks. No stability contract, but proven upgrade-stable.Priority 3 (information)
Level C[Internal] SAP objectThe default for any object not otherwise classified. Not released, not documented, not supported.Priority 2 (warning)
Level D[Not recommended] SAP object, extension point or technologyExplicitly unfit for customer use. Highest risk and technical debt.Priority 1 (error)

Clean core status: Level A = clean core · Levels B and C = conditional clean core · Level D = not clean core.

Key rules

  • Level A (Released): use for all new development. Discover via SAP Business Accelerator Hub, Cloudification Repository, or ADT.
  • Level B (Classic API): acceptable for classic ABAP development where no released API exists. Wrappers around classic APIs are Level B and can be released for ABAP Cloud consumption. Do not force rewrites of stable classic code.
  • Level C (Internal): minimize. Wrap remaining usages and create a single ATC exemption. Use the changelog for SAP objects to detect upcoming incompatible changes.
  • Level D (Not recommended): eliminate immediately. Includes noAPI objects, modifications, implicit/explicit enhancements, direct table writes, form routine calls, and critical ABAP statements.
  • Deprecated: still Level A/B, but adopt the successor API.

JSON files and states

  • objectReleaseInfo*.json — release state of SAP objects: released, deprecated, notToBeReleased, notReleased
  • objectClassifications_SAP.json — clean core classification: classicAPI (Level B), noAPI (Level D), internalAPI (Level C with a released successor available)
  • Labels: remote-enabled (RFC-enabled), transactional-consistent (usable inside RAP-based applications)

Classified object types: FUNC (function modules), CLAS (classes), INTF (interfaces), STOB (CDS views), BDEF (BO interfaces).

DDIC objects (data elements, structures, table types) are not classified and are not checked when used as data types. Only SQL access to SAP tables is checked.

ATC Clean Core Checks

Configure a single global check variant used during development and on transport release. Set ATC transport settings so priority 1 and 2 findings block release.

CheckCategoryTechnical namePurpose
Usage of APIsClean coreSYCM_USAGE_OF_APISReleased/classic API classification, SQL on SAP tables and views, calls to SAP form routines
Allowed enhancement technologiesClean coreSYCM_ALLOWED_ENH_TECHNOLOGYReports ENHO enhancements on non-allowed technology. Only BAdIs are recommended.
Search customer modificationsClean coreCI_SEARCH_CUST_MODIFICATIONSFinds modified objects (one finding per object); checks ABAP Cloud object type support
Critical statementsClean coreCI_CRITICAL_STATEMENTSStatements critical for security or program stability (kernel calls, EXEC SQL, …)
Code Vulnerability AnalyzerAdditionally recommendedSLIN_SECSecurity vulnerabilities

If Usage of APIs or Allowed Enhancement Technologies is missing, implement SAP Note 3565942.

Check variant templates

  • ABAP_CLEAN_CORE_DEVELOPMENT — SAP-delivered predefined variant for initial setup
  • ABAP_CLOUD_DEVELOPMENT_DEFAULT — template to enrich with the checks above
  • ABAP_CLOUD_READINESS — verify ABAP Cloud rules before switching an object's language version

Central ATC system

Set up a central ATC system for the whole landscape:

  • Public cloud solution on SAP BTP — SAP's recommended option
  • Or installed in the private cloud / on-premise landscape

ATC findings mapped to levels

ATC priorityLevelFindingRecommended action
Priority 1 (Error)DObject is modifiedRemove modification; use a BAdI instead
Enhancement technology is not allowedDelete enhancement implementation; use a BAdI
Implicit or explicit enhancement (source code plug-in)Delete enhancement implementation; use a BAdI
Direct write access to SAP database tablesUse released or classic APIs
Call of form routines in SAP programUse released or classic APIs
Usage of SAP object classified as noAPIUse released or classic APIs; use successor info
Usage of critical ABAP statementsUse released or classic APIs
Priority 2 (Warning)CDirect read access to SAP database table/viewUse released CDS view or classic API
Usage of SAP object not classified as classic API (internal) and not releasedUse released or classic APIs
Priority 3 (Info)BUsage of deprecated APIsUse the successor instead
Usage of classic APIs— acceptable, no action required

Critical statements covered

CI_CRITICAL_STATEMENTS reports: kernel function calls · system-calls · editor calls · EXEC SQL · database hints · generation of reports and Dynpros · read/insert report · read/insert Dynpro · import/export nametab.

Exemption Strategy

  • Focus exemptions on priority 1 (Error) and priority 2 (Warning) findings
  • Do not exempt priority 3 (Info) findings such as classic API usage
  • Use fine-granular, finding-level exemptions for clean core findings — best governance
  • Use an ATC baseline only for legacy code you will not change, to hide a large set of findings
  • Preferred practice: wrap the SAP object and consume the wrapper. N findings collapse to 1, so one exemption suffices
  • Monitor adoption via the ATC exemption browser

Changelog for SAP Objects (Level C mitigation)

Internal SAP objects can change during an upgrade, feature pack import, or even an SAP Note import. The changelog proactively lists objects with incompatible changes in upcoming releases.

Incompatible changes include: deletion of objects · renaming or deletion of function module parameters · incompatible parameter type changes · renaming or deletion of methods in SAP classes · removal of fields from CDS views.

Covered object types: FUNC, CLAS, INTF, STOB, BDEF.

Setup:

  1. Download the Simplification Database file from the SAP Software Download Center (SAP Support Portal)
  2. Import via transaction SYCM
  3. Run the changelog ATC check during development, or before the upgrade like other simplification item checks

Objects in the changelog are not automatically demoted to Level D — continued usage may be allowed depending on the change's criticality. Use findings to drive refactoring toward released or classic APIs.

Workflow

  1. Determine the target product: SAP Cloud ERP or SAP Cloud ERP Private
  2. Identify the correct JSON file using the quick reference
  3. Verify prerequisites: implement SAP Note 3565942 (clean core checks) and review SAP Note 3578329 (classic technology classification)
  4. Set up a central ATC system (SAP BTP recommended)
  5. Configure one global check variant with the clean core checks and JSON URL
  6. Configure transport settings so priority 1 and 2 findings block transport release
  7. Import the changelog for SAP objects via SYCM for Level C risk assessment
  8. Run ATC checks on custom code
  9. Map findings to levels (P1→D, P2→C, P3→B) and determine the current overall level
  10. Plan remediation: eliminate Level D, minimize Level C, monitor Level B, target Level A
  11. Govern residual usage with fine-grained exemptions on wrappers

Output Format

When helping with ATC clean core topics, structure responses as:

markdown
## ATC Clean Core Guidance

### Configuration

- Target product: [SAP Cloud ERP / SAP Cloud ERP Private]
- JSON file: [URL]
- Check variant: [name and included checks]

### Finding Classification

| ATC finding | Priority | Clean core level | Action |
|-------------|----------|------------------|--------|
| ... | ... | ... | ... |

### Remediation Plan

[Ordered: Level D first, then C, then B]

### Exemption Recommendations

[Which findings justify an exemption and why]

Cloudification API Viewer

Use the online viewers to browse object classifications interactively:

Filter by state:

  • classicAPI → Level B candidates
  • internalAPI → Level C with a released successor available
  • noAPI → Level D, must be replaced

References

  • Clean Core Extensibility Whitepaper — clean core level concept
  • Extend SAP S/4HANA in the cloud and on premise with ABAP based extensions (Version 2.3, August 2025)
  • Cloudification Repository: https://github.com/SAP/abap-atc-cr-cv-s4hc
  • SAP Note 3565942 — delivers SYCM_USAGE_OF_APIS and SYCM_ALLOWED_ENH_TECHNOLOGY
  • SAP Note 3578329 — classification of classic technologies, reuse services and frameworks

Related Skills

  • abap-cloud: Use for clean core level definitions, development models, and wrapper classification
  • abap-cloud-migration: Use for level-based remediation guidance after running ATC checks
  • released-abap-classes: Use for finding Level A released API replacements identified by ATC
  • badi-enhancement: Use for replacing Level D modifications and enhancements with BAdIs

Bundled files

The model reads these on demand while the skill is loaded. They are exposed as readable files and are never executed.

Frequently asked questions

What does the Atc Cloudification AI skill do?

Configure ATC clean core and Cloud Readiness checks using the SAP Cloudification Repository, and map ATC findings to clean core levels (A, B, C, D). Use when users ask about ATC check variants for cloud readiness, clean core compliance, clean core levels, released/classic/internal/noAPI object classification, cloudification repository setup, objectReleaseInfo or objectClassifications JSON files, ATC exemptions, changelog for SAP objects, SAP Cloud ERP or SAP Cloud ERP Private API validation, or migrating custom code to ABAP Cloud. Triggers include "configure ATC cloud readiness", "set up cl...

Why use Atc Cloudification on TypingMind?

Because you install it once and use it with any model. Atc Cloudification is plain Markdown rather than provider-specific code, so the same skill runs on GPT-5, Claude, Gemini, Grok, or a local model — and you can switch model mid-chat without it breaking. TypingMind runs on your own API keys, so you pay providers directly instead of a per-seat subscription, and your skills and chats stay in your own storage.

How do I install Atc Cloudification in TypingMind?

Open Plugins → Skills → Install from GitHub in TypingMind and paste https://github.com/likweitan/abap-skills/tree/main/skills/atc-cloudification. TypingMind reads its SKILL.md and bundles its files and installs it as a skill you can enable per chat.

Which AI models can use Atc Cloudification?

Any model you connect in TypingMind. AI skills are plain Markdown instructions rather than provider-specific code, so GPT, Claude, Gemini, Grok, and local models can all load this skill when a request matches it.

How many AI models can I use with Atc Cloudification?

As many as you like. As long as a model supports skills, you can use Atc Cloudification with it — GPT, Claude, Gemini, Grok, DeepSeek, Mistral, Llama and more — all on TypingMind with your own API keys.

Is the Atc Cloudification AI skill free?

Yes. It is published on GitHub by likweitan under the MIT license. You only pay your own AI provider for the tokens you use.

What are AI skills?

An AI skill is a reusable instruction bundle that teaches an AI model how to do one specific task. It follows the open Agent Skills format: a SKILL.md file with a name and description, plus any scripts, templates or reference files the model may need. The model reads the instructions only when your request matches the skill, so an installed skill costs nothing until it is used.

How are AI skills different from plugins or MCP servers?

A plugin or MCP server gives a model new tools to call — code that runs somewhere and returns a result. An AI skill gives the model knowledge and process instead: how to approach a task, which steps to follow, what good output looks like. Skills are plain Markdown, so they need no server, no API key and no runtime, and they work with any model.

View all

Set up your own AI workspace now

Get notified about new features and future giveaways by subscribing to our newsletter 👇