Code: Alles auswählen.
INITIALIZATION.
LOOP AT screen.
IF screen-name EQ 'WORTE'. "Großschreibung !!!
* Ausgabe unterbinden: Passwort-Modus
screen-output = '0'.
MODIFY screen.
ENDIF.
ENDLOOP.
START-OF-SELECTION.
*...
Code: Alles auswählen.
AT SELECTION-SCREEN OUTPUT.
LOOP AT SCREEN.
worte = '******'.
MODIFY SCREEN.
ENDLOOP.
END-OF-SELECTION.
Code: Alles auswählen.
LOOP AT screen.
IF screen-name EQ 'WORTE'. "Großschreibung !!!
* Ausgabe unterbinden: Passwort-Modus
screen-invisible = '1'.
MODIFY screen.
ENDIF.
ENDLOOP.