15. How can you reset SAP passwords?

15. How can you reset SAP passwords?


15. If you forget your password and can't get into your system, what back door can you use to reset it?

a) Delete SAP* from DB using SQLplus and then login as SAP* again with password=pass if SAP* is allowed.
b) You will need to open a message with OSS and they can provide you with a user name and password that can be used once to gain access.
c) You can login to a different client number and change the password from there.

    Requires Free Membership to View

    When you register, you will start receiving targeted emails from my award-winning team of editorial writers. Our goal is to keep you informed on the hottest topics and biggest challenges faced by SAP professionals today.

    Hannah Smalltree, Editorial Director

    By submitting your registration information to SearchSAP.com you agree to receive email communications from TechTarget and TechTarget partners. We encourage you to read our Privacy Policy which contains important disclosures about how we collect and use your registration and other information. If you reside outside of the United States, by submitting this registration information you consent to having your personal data transferred to and processed in the United States. Your use of SearchSAP.com is governed by our Terms of Use. You may contact us at webmaster@TechTarget.com.

ANSWER: A

If you ever find yourself locked out of an SAP system there is an easy way to gain access using the user ID SAP*. The user will already exist in your system with a set password, however you can login to SQLplus "/ as sysdba" and delete the user SAP*. Once this user is deleted from the Oracle user tables, it will automatically regenerate upon login attempt with the password PASS (assuming you have not disable it as outlined in question 5 of this quiz). The proper syntax for SQLplus is:

su – oraSID
sqlplus "/as sysdba"
DELETE from SAPR3.USR02 where mandt='xxx'
and bname = 'SAP*';

Now you can open SAPGUI with client xxx and login with SAP* and password PASS.

Return to the answer page
Return to the quiz

This was first published in February 2006