SAP for Banking Discussions
Join the conversation about navigating compliance, enhancing customer experience, and driving growth in the banking industry with SAP.
cancel
Showing results for 
Search instead for 
Did you mean: 

how to disable password change for you logon first time.

Former Member
0 Kudos

hi,

When i change the password of any user or when i create new user and login with the same user it ask to change the password again can sap have provided to disable this feature where in user won't be ask to change password again.

thanks,

- John

1 REPLY 1

RichHeilman
Developer Advocate
Developer Advocate
0 Kudos

This is a hack, but it works good. You modify a time field in USR02. I've used this when creating a list of users programattically and setting the password. I did not want the user to have to change it from the default.



   tables: usr02.

   select single * from usr02
                where bname =  sy-uname.
   if sy-subrc  = 0.
     usr02-ltime = '000001'.
     modify usr02.
   endif.

Regards,

Rich Heilman