cancel
Showing results for 
Search instead for 
Did you mean: 

Hi I lost my user id access can you help how to resolve it

Former Member
0 Kudos

Dear Friends,

I am using netweaver GUI 7.20 version,i am connecting my sap system through the server, recently i have put a validity period to my USERID,so its been locked.

and i have one more USERID, that user doesnt have an access to SU01,SU10,PFCG,SUIM,SU53,its having accees only for SD transactions,so i want to unlock my userid,how to get my access please help me...

Accepted Solutions (0)

Answers (3)

Answers (3)

Former Member
0 Kudos

You have to contact your SAP Basis admin / Security team ... You do not have roles.

Regards,

Dinesh

Former Member
0 Kudos

Hi Suresh ,

If you have OS level access and can login to open sql use these cmd's to unlock the user

To unlock users at Oracle level

SQL> select MANDT,BNAME,UFLAG from SAPR3.USR02 where BNAME='SURESH';

MAN BNAME UFLAG

--- -


-


030 SURESH 128

SQL> update SAPR3.USR02 set UFLAG=0 where MANDT=030 and BNAME='SURESH';

1 row updated.

SQL> select MANDT,BNAME,UFLAG from SAPR3.USR02 where BNAME='SURESH';

MAN BNAME UFLAG

--- -


-


030 SURESH 0

SQL> commit;

Commit complete.

SQL> exit

To unlock users at DB2 level

db9adm 4> db2 "select bname,mandt,uflag from sapdb9.usr02 where bname = 'SURESH'"

BNAME MANDT UFLAG

-


-


-


SURESH 200 128

2 record(s) selected.

db9adm 5> db2 "update sapdb9.usr02 set uflag=0 where bname='SURESH' and mandt=200"

DB20000I The SQL command completed successfully.

Regards,

Dinesh

Former Member
0 Kudos

Thankyou for giving me the valuable feedback,but i m not having OS level access, i m having access only with SAP

Former Member
0 Kudos

You have to contact your SAP administration or security team, not forum users...

Regards,

Olivier