Sie sind auf Seite 1von 6

Introduction

ABAP is quite different from many contemporary programming languages in several ways. Some
aspects of ABAP would make us wonder why is it made this complex while some aspects are so
awesome and more comfortable for a programmer than any other language can provide.

Two of those things that I find so cool are:

o Its ingenuous IDE (ABAP Editor) and


o Its cool Debugger

Eventhough the SAP IDE does not support some of the features which more prominent IDEs like
Eclipse etc have, I find it so comfortable to code in ABAP Editor compared to others. The reason is
because of the below shortcuts and customizations available with it. I am listing the few which I use
constantly and without which I cannot think of coding ABAP.
Most of the programmers even with a little bit of ABAP experience would have come accross the details listed here. If you have,
please ignore and if you havent then the stage is yours..
Shortcut What it does
Duplicate any line.
Ctrl + D
eg. i_vbap TYPE STANDARD TABLE OF vbap + Ctrl-D = i_vbap TYPE STANDARD TABLE OF vbap
i_vbap TYPE STANDARD TABLE OF vbap
Jump to the command field where we enter t-codes. This comes really handy and saves a jump from keyboard t
Ctrl + /
keyboard just to click on the box.

Convert to Proper case where the first letter of every word becomes a capital letter. This is pretty useful when wri
Ctrl + J eg. * this is a comment which will give absolutely no useful information will be changed to
* This Is A Comment Which Will Give Absolutely No Useful Information
Ctrl + I & Incremental search. This is a little improved Find (Ctrl + F) function which searches as soon as you type. Useful f
Ctrl + Shift + I to search backwards.

Ctrl + K Toggle between Upper case and Lower Case.

This is useful in situation where you need to select only the field names of a particular table.

eg.

caufvaufnr,
caufvwerks,
caufvobjnr,
caufvplnbez,
caufvgamng,
caufvgasmg,
caufvgmein,
Alt + Selection caufvplnnr,
caufvplnal,
caufvdispo,
caufvfevor,
caufvcy_seqnr ,
caufvaufpl,
caufvgstrp,
caufvgltrp,
caufvgstrs,
caufvgltrs,
caufvgstri,
caufvgltri,
In these values, u can select only the field names by pressing Alt key and get the clipboard filled like this.

aufnr,
werks,
objnr,
plnbez,
gamng,
gasmg,
gmein,
plnnr,
plnal,
dispo,
fevor,
cy_seqnr ,
aufpl,
gstrp,
gltrp,
gstrs,
gltrs,
gstri,
gltri,
Tab & Shift tab Increase and Decrease Intend

Ctrl + O Goto a particular line in the program

Ctrl + Shift + S Save your program in Desktop in .abap format. I came know about .abap only after learning this short cut.

Ctrl + Selection When you do a selection with **** + -> or <- hold on to Ctrl to jump every word in that direction.

Ctrl + . & Ctrl + , Comment and Un-Comment selected lines.

Swaps current line with the Upper Line.

eg. INCLUDE ZTEST_ABAP_HTTP_CLIENT_TOP.


Ctrl+Alt+T
INCLUDE ZTEST_ABAP_HTTP_CLIENT_C01. becomes

INCLUDE ZTEST_ABAP_HTTP_CLIENT_C01.
INCLUDE ZTEST_ABAP_HTTP_CLIENT_TOP.
Ctrl+Shift+L/X Deletes the whole line

Jump to previous or next paragraph.


Ctrl + ] & Ctrl + [
A paragraph is created by leaving an empty line between statements.

Ctrl + Shift + Num8 & Move the lines up and down in the editor window while the cursor stays in the same place.

Ctrl + Shift + Num2 This is similar to Page Up & Page Down but instead, it does not scroll an entire page but only one line.

Display options to complete a command.

Eg. After typing CREATE, Ctrl + Spacebar will show you the list to choose DATA or OBJECT..
Ctrl + Spacebar

More Editor Tools:


Apart from this, there are a few other things that can be set in Editor options
like,
Code Templates

Here I use a template for the text. This could be a text that is used for marking modifications or
Defenition and implementation of local classes etc.

* Begin of Insertion <SID>K12345 <username>


* End of Insertion <SID>K12345 <username>
i.e when I press i* in the editor, it will prompt for code completion..

When I press Tab for completion, it pops up for TR Number

The TR number that we give will be added in the comment.


Variable Name Suggestions
This is just a small setting but it will save you from Copy pasting or re-typing small words.

When you check this box, it will suggest even for variable names like

Particularly useful for longer variable names.


Conclusion
Apart from the editor and debugger functions, the navigation and where used-list are other
funtionalities which we use more often. Especially the code maintenance and support activities are
comparitively less hectic just because these features.

Another cool way to extend its core editor functionality for customizations could be by providing
APIs even for the application programmers to code and customize the editor features. It will also
add to the creativity aspect on SAP side since any third programmer could come with an awesome
idea as an editor extension.
As far as I have explored, I havent found any BADI or classes which can be used to perform editor
functions. May be I have to look more or wait

Update: I got impressed with the response for this blog and it made me dig deeper inside the subject
and came across this.

Programming Shortcuts The GEEK Style:


Most of the shortcuts listed and not listed here can be seen from the SAP-GUI editor options.
Again, click on the editor options button in the bottom-right corner of the SAP Editor screen,
and choose

Now.. Most of the shortcuts listed above are available in the above list.
We can re-assign any of the actions with any shortcuts we desire..

There are also cool actions which are not assigned to any shortcuts, Copy Append is one such
shortcut which I find to be very useful, un-assigned.
I am assigning a new shortcut Ctrl + Alt + C for copy append..

Now by pressing Ctrl + Alt + C, I can append contents into my clipboard.


Eg.
+ Ctrl + Alt + C

+ =

Similarly you can set shortcuts for Cut Append, Navigating to Bookmarks, Formatting Selected text
etc

Das könnte Ihnen auch gefallen