Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

Password decoding ...

Former Member
0 Likes
648

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

1 ACCEPTED SOLUTION
Read only

RieSe
Contributor
0 Likes
537

Hi,

this is definitively not possible. Sorry

Stefan

2 REPLIES 2
Read only

RieSe
Contributor
0 Likes
538

Hi,

this is definitively not possible. Sorry

Stefan

Read only

RichHeilman
Developer Advocate
Developer Advocate
0 Likes
537

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