2008年12月15日星期一

SAP ERP 4.7 如何删除被锁定的用户密码

ECC6.0安装后的默认用户名为SAP*和DDIC,但密码为安装时输入的密码。另外ECC6还提供其他用户名,IDADMIN,密码为IDES。这个我找了很久,什么SAP*,PASS、DDIC,19920706;SAP*,07061992我都试过了,花了很多时间。

1、首先搜索文件DEFAULT.PFL,在C:\usr\sap\ER1\SYS\profile下,将以下内容添加为新行:login_no_automatic_user_sapstar =0。
2、点击“开始”->“运行”->cmd
3、To reset the password from sqlplus, do the following...

Type "sqlplus / as sysdba"
SQL> select * from SAPSR3.USR02 where BNAME='SAP*' AND MANDT='Your_Client_No.';
SQL> delete from SAPSR3.USR02 where BNAME='SAP*' AND MANDT='Your_Client_No.';
SQL> commit;

Now you can logon using SAP* with password 'pass';

Remember, for this you need to change the profile parameter 'login/no_automatic_user_sapstar' to '0'
(again you can change it from sqlplus...)

没有评论:

发表评论