Application Development Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 

ABAP Auto Complet in Eclipse

ABAPDos
Explorer
0 Kudos

While typing "LOO" the autocompletion suggests "LOOP", and than pressing on Tab complete it to "LOOP" and suggests "LOOP AT", and than another click on the Tab keyboard complete it to "LOOP AT",

But... no completion for " LOOP AT ... ... ... ENDLOOP." (while in LOGON editor it works good).

Is there an option to fix it ?

2 REPLIES 2

NTeunckens
Active Contributor
0 Kudos

Hello ABAPDos

It sounds strange, yet the "LOOP AT ... ENDLOOP" template for code-completion is not available. There is a template called "LoopAtAssigning" that almost matches your request.
Just enter "LOOP", do 'CNTRL + SPACE' and the template should come available ...

LoopAtAssigning.JPG

When accepting that Template, you will get the following ...

 

loop at table assigning fldsym.
  
endloop.

 

If that doesn't suffice, you could implement your own ABAP Templates in the "Preferences" via the "Windows"-menu option in ADT (or just do a Search the IDE for "ABAP Templates").
There, you could create you own Templates ...

Preferences.JPG


Hope this helps ...

Nic T.

0 Kudos

Great!

Thank you very much @NTeunckens .