2024 Feb 27 5:06 PM
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 ?
2024 Feb 27 10:51 PM - edited 2024 Feb 27 10:58 PM
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 ...
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 ...
Hope this helps ...
Nic T.
2024 Feb 28 7:51 AM