‎2008 Jul 08 1:48 PM
Hi All,
How can I print stars for the field password on the selection-screen?
Thanks All in advance.
‎2008 Jul 08 1:51 PM
Hi Swapna,
Do like this.
AT SELECTION-SCREEN OUTPUT.
LOOP AT SCREEN.
CHECK screen-name = 'PO_PW'. " UR parameter name
screen-invisible = 1.
MODIFY screen.
EXIT.
ENDLOOP.
Thanks,
Vinod.
Edited by: Vinod Reddy Vemuru on Jul 8, 2008 6:21 PM
‎2008 Jul 08 1:51 PM
Hi Swapna,
Do like this.
AT SELECTION-SCREEN OUTPUT.
LOOP AT SCREEN.
CHECK screen-name = 'PO_PW'. " UR parameter name
screen-invisible = 1.
MODIFY screen.
EXIT.
ENDLOOP.
Thanks,
Vinod.
Edited by: Vinod Reddy Vemuru on Jul 8, 2008 6:21 PM
‎2008 Jul 08 1:52 PM
write this code ..
parameters : p_pass(20).
initialization.
loop at screen.
if screen-name = 'P_PASS'.
screen-invisible = '1'.
modify screen.
endif.
endloop.
‎2008 Jul 08 1:53 PM
‎2008 Jul 08 2:00 PM