2008 Mar 06 9:37 AM
When we are designing Logon screen how can I handle password.
Such that even if we enter it should take only *s.
Urgent plz??????
2008 Mar 06 9:39 AM
2008 Mar 06 9:39 AM
2008 Mar 06 9:52 AM
Dear santhosh
i am designing a logon screen in which what ever the password that i enter should be in *'s.
it should not be displayed but it should match with the data that i store it in a master table.
2008 Mar 06 10:01 AM
Hi,
Do the following steps to get the password field always shows only *'s.
1. Go to your log on screen layout.
2. Double click on your password field that would open field attribute window.
3. In the field attribute window, click Display tabstrip on the lower part of window.
4. In the Display tarstrip click on the Invisible check box this will fulfill your requirement.
Regards,
Yellappa.
2008 Mar 06 9:57 AM
hi,
just try using the code.
in the PBO module.
loop at screen.
check screen-name eq 'ZEMPDETAILS-PASSWORD'.
move: 1 to screen-invisible.
endloop.
in the PAI module .
you validate it.