SE38: Coding Vorlagen

Mit Cursor Position ist der Cursor an der angegebenen Position.

Mit Date Time wird Datum und Uhrzeit eingefügt

Mit Clipboard wird die Zwischenablage eingefügt.

Mit Surrounded Text wird der vorher markierte Text geschachtelt.

Mit Document Name wird der Dokumentenname eingefügt.

Mit %Variable% wird eine Variable eingefügt, die vorher abgefragt wird.

Hier eine Vorlage für form:

*&---------------------------------------------------------------------*
*&      Form %Form%
*&---------------------------------------------------------------------*
*       text
*----------------------------------------------------------------------*
*  <--  Input        text
*  --> Output        text
*----------------------------------------------------------------------*
form %Form%.
  |
endform.                               " %Form%

Es können auch 2 Variablen verwendet werden:

*&---------------------------------------------------------------------*
*&      Form %Form%
*&---------------------------------------------------------------------*
*       text
*----------------------------------------------------------------------*
*  <--  Input        %Input%
*  --> Output        %Output%
*----------------------------------------------------------------------*
form %Form%.
  |
endform.                               " %Form%