‎2008 Mar 25 5:51 AM
Hi,
I am doing a module-pool programming in which I have a screen which contains 2 input fields.
i) Login ID
ii) Password.
My requirement is when the user enters the password, it should show the contents as ******* (similar to SAP Logon screen).
Please suggest me how to implement this..
Thanks and Regards,
Sayan Ghosh
‎2008 Mar 25 5:54 AM
just define the password filed as invisible in its attributes
it will come in ****** format but will contain the values that you can check
‎2008 Mar 25 5:54 AM
just define the password filed as invisible in its attributes
it will come in ****** format but will contain the values that you can check
‎2008 Mar 25 5:55 AM
Hi,
loop at screen.
screen-invisible = 1.
modify screen.
endloop.
Regards,
Sankar.
‎2008 Mar 25 5:56 AM
PARAMETERS: p_pass TYPE xuncode.
LOOP AT SCREEN.
IF screen-name = 'p_pass'.
screen-invisible = '1'.
MODIFY SCREEN.
ENDIF.
ENDLOOP.
‎2008 Mar 25 6:02 AM
Hi,
Follow the procedure as Follows,
1.Example if ZMHRUSERID-PASSWD is screen field name .
2.Goto Screen painter Properties .Dbl click on the PASSWD.
3.ZMHRUSERID-PASSWD activate the FromDict checkbox
in the modify listbox choose 'X'
4.Important ur ZMHRUSERID-PASSWD must refer u to DICT Structure.
5.Make the ZMHRUSERID-PASSWD as Output Field in Program.
Regards,
Balakumar.G
Reward Points if helpful.