Code templates in Eclipse

In Eclipse, code templates can be created and saved under a name. If you type this name (or the beginning of it) in the ABAP Editor and then press Strg. + Leertaste, this template is proposed and, if you select it, the corresponding code is inserted.

Vimeo

Mit dem Laden des Videos akzeptieren Sie die Datenschutzerklärung von Vimeo.
Mehr erfahren

Video laden

Example from the video

CASE ${expression}
  WHEN '${a}' THEN '${b}'
  WHEN '${c}' THEN '${d}'
  ELSE '${e}'
END AS ${expression}