SAP ABAP Eclipse (ADT) Shortcuts Cheat Sheet π
Hereβs a list of essential keyboard shortcuts to speed up your ABAP development in Eclipse (ADT).
πΉ 1. General Eclipse Shortcuts
Action | Shortcut |
---|
Open ABAP Object | Ctrl + Shift + A |
Open ABAP Development Object (Class, Program, FM) | Ctrl + Shift + O |
Save | Ctrl + S |
Close Editor | Ctrl + W |
Close All Editors | Ctrl + Shift + W |
Switch Between Open Editors | Ctrl + F6 |
Open Preferences | Ctrl + 3 , then type Preferences |
Quick Access (Search Commands) | Ctrl + 3 |
πΉ 2. Code Navigation
Action | Shortcut |
---|
Go to Declaration (Follows Method/FM) | F3 |
Open ABAP Element Info (Hover) | F2 |
Open Superclass or Interface | Ctrl + T |
Go to Line | Ctrl + L |
Find in File | Ctrl + F |
Find and Replace | Ctrl + H |
Show Call Hierarchy | Ctrl + Alt + H |
Navigate Back | Alt + Left Arrow |
Navigate Forward | Alt + Right Arrow |
Action | Shortcut |
---|
Pretty Printer (Code Formatting) | Shift + F1 |
ABAP Cleaner (Advanced Code Cleanup) | Ctrl + Shift + 2 |
Comment Line | Ctrl + 7 |
Uncomment Line | Ctrl + 7 |
Quick Fix | Ctrl + 1 |
Show Content Assist (Autocomplete) | Ctrl + Space |
Rename Element (Refactor) | Alt + Shift + R |
Delete Line | Ctrl + D |
Duplicate Line | Ctrl + Alt + Down |
Move Line Up | Alt + Up |
Move Line Down | Alt + Down |
πΉ 4. Running & Debugging
Action | Shortcut |
---|
Run Program | F8 |
Run ABAP Unit Test | Ctrl + Shift + F10 |
Debug Program | F9 |
Step Into | F5 |
Step Over | F6 |
Step Out | F7 |
Resume Execution | F8 |
Toggle Breakpoint | Ctrl + Shift + B |
Remove All Breakpoints | Ctrl + Shift + R |
Show Debugging Variables | Shift + F10 |
πΉ 5. Version Management
Action | Shortcut |
---|
Show Differences (Compare Versions) | Ctrl + Shift + C |
Open Transport Organizer (SE09 ) | Ctrl + Shift + T |
Check Object (Syntax Check) | Ctrl + F2 |
Activate Object | Ctrl + F3 |
Show Object History | Ctrl + Alt + V |
π₯ Pro Tips:
π‘ Use Ctrl + 3
to quickly find any command instead of navigating menus!
π‘ Combine Pretty Printer (Shift + F1
) and ABAP Cleaner (Ctrl + Shift + 2
) for well-structured code!
π‘ Use Debugging (F9
) with Watchpoints (Right-click β Add Watchpoint
) for deeper analysis!