This skill covers ABAP syntax from 7.40 SP08 through ABAP Cloud. Features requiring
Works with
a higher release are annotated with inline comments in code examples using the format
" [7.xx+] or noted in reference files. The table below summarizes the key version boundaries.
AI-first code editor with Composer
Before installing skills in Cursor, ensure your development environment meets these requirements:
node --versionsap-abapExecute the skills CLI command in your project's root directory to begin installation:
Fetches sap-abap from secondsky/sap-skills and configures it for Cursor.
The CLI shows a list of agents. Use arrow keys and space to select Cursor:
Confirm successful installation by checking the skill directory location:
Restart Cursor to activate sap-abap. Access via /sap-abap in your agent's command palette.
We perform automated surface-level scans (Gen AI Scanner, Socket, Snyk) during installation. These checks detect common vulnerabilities but do not guarantee complete security. Always review skill source code and verify the publisher's reputation before production use.
Skills execute code in your environment. Always review source, verify the publisher, and test in isolation before production.
Submit your Claude Code skill and start earning
Create detailed user stories, acceptance criteria, and feature specs
Example
Generate user stories for 'password reset feature' with acceptance criteria, edge cases, and test scenarios
Reduce spec writing time by 50%, ensure comprehensive coverage
Research competitors, compare features, identify gaps
Example
Analyze 5 competitor products, create feature comparison matrix, suggest differentiation opportunities
Complete competitive research in 2 hours instead of 2 days
Evaluate features using frameworks (RICE, ICE, Kano) and create prioritized backlogs
Example
Score 20 feature ideas using RICE framework, generate prioritized roadmap with rationale
6
total installs
6
this week
185
GitHub stars
0
upvotes
Run in your terminal
6
installs
6
this week
185
stars
This skill covers ABAP syntax from 7.40 SP08 through ABAP Cloud. Features requiring
a higher release are annotated with inline comments in code examples using the format
" [7.xx+] or noted in reference files. The table below summarizes the key version boundaries.
| Feature | 7.40 SP02 | 7.40 SP05 | 7.40 SP08 | 7.50 | 7.51 | 7.52 | 7.54 |
|---|---|---|---|---|---|---|---|
Inline declarations DATA(...) |
x | x | x | x | x | x | x |
| Constructor operators (VALUE, NEW, CONV, COND, SWITCH, REF, EXACT, CAST) | x | x | x | x | x | x | x |
Table expressions itab[...] |
x | x | x | x | x | x | x |
| String templates | x | x | x | x | x | x | x |
WITH EMPTY KEY |
x | x | x | x | x | x | x |
line_exists(), line_index() |
x | x | x | x | x | x | x |
ABAP SQL: @ host variables |
x | x | x | x | x | x | |
| ABAP SQL: comma-separated lists | x | x | x | x | x | x | |
| ABAP SQL: SQL expressions in SELECT | x | x | x | x | x | x | |
CORRESPONDING operator |
x | x | x | x | x | x | |
Table comprehensions (FOR) |
x | x | x | x | x | x | |
LET expressions |
x | x | x | x | x | x | |
REDUCE operator |
x | x | x | x | x | ||
FILTER operator |
x | x | x | x | x | ||
BASE addition |
x | x | x | x | x | ||
LOOP AT ... GROUP BY |
x | x | x | x | x | ||
ABAP SQL: dbtab~* in SELECT |
x | x | x | x | x | ||
ABAP SQL: RIGHT OUTER JOIN |
x | x | x | x | x | x | |
| CDS views with parameters | x | x | x | x | x | ||
FINAL(...) inline declaration |
x | x | x | x | |||
Host expressions @( expr ) |
x | x | x | x | |||
UNION in SELECT |
x | x | x | x | |||
IS INSTANCE OF / CASE TYPE OF |
x | x | x | x | |||
int8 type |
x | x | x | x | |||
| CDS table functions | x | x | x | x | |||
| CDS access control (implicit) | x | x | x | x | |||
$session.user/client/system_language |
x | x | x | x | |||
Test seams (TEST-SEAM) |
x | x | x | x | |||
Common Table Expressions (WITH) |
x | x | x | ||||
OFFSET in SELECT |
x | x | x | ||||
UPPER/LOWER in CDS |
x | x | x | ||||
| Enumerated types | x | x | x | ||||
Internal tables as data source FROM @itab |
x | x | |||||
WITH PRIVILEGED ACCESS |
x | x | |||||
utclong type and functions |
x |
On a 7.40 system: Replace any FINAL(...) with DATA(...), and avoid 7.50+ features
marked in bold above. Most modern ABAP syntax (VALUE, NEW, CONV, inline declarations,
table expressions, REDUCE, FILTER, GROUP BY) is available since 7.40 SP08.
" Elementary types
DATA num TYPE i VALUE 123.
DATA txt TYPE string VALUE `Hello`.
DATA flag TYPE abap_bool VALUE abap_true.
" Inline declarations
DATA(result) = some_method( ).
FINAL(immutable) = `constant value`. " [7.50+] Use DATA(...) on 7.40
" Structures
DATA: BEGIN OF struc,
id TYPE i,
name TYPE string,
END OF struc.
" Internal tables
DATA itab TYPE TABLE OF string WITH EMPTY KEY.
DATA sorted_tab TYPE SORTED TABLE OF struct WITH UNIQUE KEY id.
DATA hashed_tab TYPE HASHED TABLE OF struct WITH UNIQUE KEY id.
" Create with VALUE
itab = VALUE #( ( col1 = 1 col2 = `a` )
( col1 = 2 col2 = `b` ) ).
" Read operations
DATA(line) = itab[ 1 ]. " By index
DATA(line2) = itab[ col1 = 1 ]. " By key
READ TABLE itab INTO wa INDEX 1.
READ TABLE itab ASSIGNING FIELD-SYMBOL(<fs>) WITH KEY col1 = 1.
" Modify operations
MODIFY TABLE itab FROM VALUE #( col1 = 1 col2 = `updated` ).
itab[ 1 ]-col2 = `changed`.
" Loop processing
LOOP AT itab ASSIGNING FIELD-SYMBOL(<line>).
<line>-col2 = to_upper( <line>-col2 ).
ENDLOOP.
" Delete
DELETE itab WHERE col1 > 5.
DELETE TABLE itab FROM VALUE #( col1 = 1 ).
" SELECT into table
SELECT * FROM dbtab INTO TABLE @DATA(result_tab). " @ syntax: 7.40 SP05+
" SELECT with conditions
SELECT carrid, connid, fldate " comma syntax: 7.40 SP05+
FROM zdemo_abap_fli
WHERE carrid = 'LH'
INTO TABLE @DATA(flights).
" Aggregate functions
SELECT carrid, COUNT(*) AS cnt, AVG( price ) AS avg_price
FROM zdemo_abap_fli
GROUP BY carrid
INTO TABLE @DATA(stats).
" JOIN operations
SELECT a~carrid, a~connid, b~carrname
FROM zdemo_abap_fli AS a
INNER JOIN zdemo_abap_carr AS b ON a~carrid = b~carrid
INTO TABLE @DATA(joined).Make data-driven prioritization decisions faster
Draft PRDs, status updates, and stakeholder presentations
Example
Create executive summary of Q3 roadmap, monthly progress report, feature launch announcement
Save 3-5 hours/week on communication overhead
Prerequisites
Time Estimate
30-60 minutes to see productivity improvements
Steps
Common Pitfalls
✓ Do
✗ Don't
💡 Pro Tips
✓ Use when
Use for user story writing, competitive research, roadmap prioritization, stakeholder communication, and PRD drafting. Best for reducing repetitive documentation and research work.
✗ Avoid when
Avoid for strategic product vision (requires deep customer empathy), pricing decisions (needs market and financial expertise), or when face-to-face customer discovery is more valuable than speed.
mattpocock/skills
parcadei/continuous-claude-v3
cursor/plugins
ailabs-393/ai-labs-claude-skills
pproenca/dot-skills
ailabs-393/ai-labs-claude-skills
Solid pick for teams standardizing on skills: sap-abap is focused, and the summary matches what you get after install.
Useful defaults in sap-abap — fewer surprises than typical one-off scripts, and it plays nicely with `npx skills` flows.
sap-abap fits our agent workflows well — practical, well scoped, and easy to wire into existing repos.
I recommend sap-abap for anyone iterating fast on agent tooling; clear intent and a small, reviewable surface area.
Keeps context tight: sap-abap is the kind of skill you can hand to a new teammate without a long onboarding doc.
sap-abap is among the better-maintained entries we tried; worth keeping pinned for repeat workflows.
Registry listing for sap-abap matched our evaluation — installs cleanly and behaves as described in the markdown.
Keeps context tight: sap-abap is the kind of skill you can hand to a new teammate without a long onboarding doc.
sap-abap reduced setup friction for our internal harness; good balance of opinion and flexibility.
sap-abap is among the better-maintained entries we tried; worth keeping pinned for repeat workflows.
showing 1-10 of 38