Download as docx, pdf, or txt
Download as docx, pdf, or txt
You are on page 1of 1

Screen invisible

Which ABAP statement can make an element visible that you statically defined as
invisible?

Screen-active can hide /unhide but screen-invisible will show the screen in form of
password means when you enter anything on screen then it will show as password
letters.

SCREEN-INVISIBLE = 0 (password)
Screen-active
Screen-input

LOOP AT screen.
...

MOVE 1 TO screen-invisible.
MODIFY screen.

ENDLOOP.

You might also like