SU01 -> 输入User name -> clicked on "Change password" -> and clicked (by mistake) on "Deactivate password".
Now in SU01 in this user near the password, there is a message "Password is deactivated".
当用户登录时,会碰见如下错误信息: "E:2W:006"
呵呵,某种程度上我认为这是SAP 的一个Bug.
here is a "bug" in some versions of R3 which will NOT reactivate the password
There is a filed named CODVN in the table USR02 which should be "B" and
when deactivated is changd to "X". When a new password is issued via SU01,
this filed SHOULD be refreshed to "B", but there ia a "bug" and it remains "X".
Now in SU01 in this user near the password, there is a message "Password is deactivated".
当用户登录时,会碰见如下错误信息: "E:2W:006"
呵呵,某种程度上我认为这是SAP 的一个Bug.
here is a "bug" in some versions of R3 which will NOT reactivate the password
There is a filed named CODVN in the table USR02 which should be "B" and
when deactivated is changd to "X". When a new password is issued via SU01,
this filed SHOULD be refreshed to "B", but there ia a "bug" and it remains "X".
两种解决方法:
1. 就是你的方法, 重建用户。很快搞定
2. 用sql, 直接搞定:
update usr02 set codvn='B'
where codvn = 'X'