‎2005 Sep 23 10:49 AM
i have to design a Login page in BSP ,it shd propt for SAP r/3 user id and password .
Evn though i can achieve it through SICF transaction ....i would like to maintain the same look and feel .
I found it in USR02 -bcode ... is there any way to decode the password # keys ?
suppose if i use the same encoded text for my password ...will it allow . ( i hope it might not be ...)
plz clear my doubt
rgds,
J
‎2005 Sep 23 11:42 AM
‎2005 Sep 23 11:42 AM
‎2005 Sep 23 12:33 PM
Nop, this is a big security issue. Just imagine every ABAPer cracking r/3 passwords. You can however do some custom passwords if needed. Check out the following.
parameters: pass TYPE FIEB_DECRYPTED_PASSWD.
write:/ pass.
call function 'FIEB_PASSWORD_ENCRYPT'
exporting
im_decrypted_password = pass
importing
ex_encrypted_password = pass.
write:/ pass.
call function 'FIEB_PASSWORD_DECRYPT'
exporting
im_encrypted_password = pass
importing
ex_decrypted_password = pass.
write:/ pass.
Regards,
Rich Heilman