‎2007 May 23 5:18 PM
hi to all,
i' ve a requirement to display in the field vname.but while giving input in that field it sholud be invisible i.e it sholud consider my input in the form of ' ******* ' .pls urgent
thanx
lokanadhan.k
‎2007 May 23 5:53 PM
Hi Lokanadhan,
Try this code it will solve your problem:
PARAMETERS: p_pass(10) TYPE c.
AT SELECTION-SCREEN OUTPUT.
LOOP AT SCREEN.
IF screen-name = 'P_PASS'.
screen-invisible = '1'.
MODIFY SCREEN.
ENDIF.
ENDLOOP.
START-OF-SELECTION.
WRITE: / p_pass.
Reward points if helpful answer.
Ashven
‎2007 May 23 5:20 PM
Hi,
Check this sample..
PARAMETERS: P_PASS(10) MODIF ID M1.
AT SELECTION-SCREEN OUTPUT.
LOOP AT SCREEN.
* Make the field invisible.
IF SCREEN-GROUP1 = 'M1'.
SCREEN-INVISIBLE = 1.
MODIFY SCREEN.
ENDIF.
ENDLOOP.
Thanks,
Naren
‎2007 May 23 5:53 PM
Hi Lokanadhan,
Try this code it will solve your problem:
PARAMETERS: p_pass(10) TYPE c.
AT SELECTION-SCREEN OUTPUT.
LOOP AT SCREEN.
IF screen-name = 'P_PASS'.
screen-invisible = '1'.
MODIFY SCREEN.
ENDIF.
ENDLOOP.
START-OF-SELECTION.
WRITE: / p_pass.
Reward points if helpful answer.
Ashven