Resetting the password in sql query

Hi
    Am getting error in once ecc6 Installation over i went for 000client to configure post installation steps but 000 client default  password is not going .Can you please  help me sortout the issue.How to reset sap* password in sql database.
Regards,
K.Ramamoorthy

Just do a search on this forum where you will find multiple threads to reset password of SAP*. Please do some research before posting question here.
Read Rule of Engagement...
Thanks
Sunny

Similar Messages

  • Tried resetting password, reset the password for other account.

    I currently have two itunes accounts, and when I tried to reset the password for one of them, it reset the password for the other instead. After reseting the password by entereing email 1, I tried to log in with it, it did not work. I got very angry but then had an idea, so I entered email 2 and the new password and it worked. Why is it that I reset the password for account 2 even though when reseting the password I entered email 1? I can not reset the password for account 1, making it immpossible to update the apps purchased with it. I am beyond irate with itunes for this, not to mention the fact that it didn't send the reset conformation email until the third try!!!
    Please help.

    You can reset SAP* password after that logging using SAP* password PASS you can reset DDIC password for the client .
    Run this in SQL*Plus
    DELETE FROM SAPSID.USR02 WHERE MANDT='<CLIENT>'
    AND BNAME='SAP*';
    You will require additional DBA skill set to reset DDIC password ( Which is not recommanded aslo )
    The best option I would suggest .
    1)Delete SAP* using above query .
    2)Logon using SAP* password pass
    3)Reset DDIC password.
    Regards ,
    Santosh Karadkar

  • Resetting the Password using wwsso_ls_private.ls_reset_password

    While resetting the password using wwsso_ls_private.ls_reset_password, an exception is thrown.
    Here is the exception:
    ERROR at line 1:
    ORA-06510: PL/SQL: unhandled user-defined exception
    ORA-06512: at "PORTAL30_SSO.WWSSO_LS_PRIVATE", line 2546
    ORA-06512: at "PORTAL30_SSO.RESET_PASS", line 10
    ORA-06512: at line 1
    Any idea why this exception is thrown?
    Any help is greatly appreciated.
    Thanks.
    Bala
    null

    Some more information that might be helpful:
    Installing the Password Reset Feature for 3.0.7
    Sometimes users forget their passwords and want to reset them. The Login Server offers a
    feature that resets a user's password to a random value and then notifies the user of the new password.
    This feature potentially presents a security issue, because the user is unauthenticated when requesting a password reset for a particular user account. For this reason, the password reset feature is not enabled by default and must be set up by the following steps.
    Perform the following steps to install the password reset feature:
    1. On the database where the Login Server is installed, log on to SQL*Plus as the Login Server schema
    Example: sqlplus portal30_sso/portal30_sso
    2. Enter the following command:
    @ssoreset
    This script creates a package called WWSSO_APP_ACCOUNT in the Login Server
    schema and grants execute privileges on the WWSSO_APP_ACCOUNT package to PUBLIC. WWSSO_APP_ACCOUNT contains a single procedure, reset_password, that resets a password to a random value.
    3.After resetting the password, the reset_password procedure calls another procedure WWSSO_ALERT.password_reset_notification). The purpose of the
    password_reset_notification procedure is to inform the user of the new password. However, the default implementation of the password_reset_notification
    procedure, created during the installation of the Login Server, does nothing.
    The specification of the WWSSO_ALERT package is:
    CREATE OR REPLACE PACKAGE wwsso_alert
    IS
    /* General failure exception. This will be used by the UI to alert the user that the notification
    Note: You must replace the WWSSO_ALERT package body with an
    implementation that sends the user his or her new password, for example, through e-mail (using UTL_SMTP), or workflow. If you do not replace this package body, the password will be reset to a value that no-one will ever know, and the user will still be unable to log on.
    NOTIFICATION_FAILURE EXCEPTION;
    PROCEDURE password_reset_notification
    p_user VARCHAR2,
    p_password VARCHAR2,
    p_email VARCHAR2 DEFAULT NULL
    END wwsso_alert;
    CREATE or REPLACE PACKAGE BODY wwsso_alert
    IS
    PROCEDURE send_mail
    p_sender IN VARCHAR2,
    p_recipient IN VARCHAR2,
    p_message IN VARCHAR2
    IS
    mailhost VARCHAR2(80) := '&smtp_server';
    mail_conn utl_smtp.connection;
    BEGIN
    mail_conn := utl_smtp.open_connection(mailhost, 25);
    utl_smtp.helo(mail_conn, mailhost);
    utl_smtp.mail(mail_conn, p_sender);
    utl_smtp.rcpt(mail_conn, p_recipient);
    utl_smtp.data(mail_conn, p_message);
    utl_smtp.quit(mail_conn);
    END;
    PROCEDURE password_reset_notification
    p_user VARCHAR2,
    p_password VARCHAR2,
    p_email VARCHAR2 DEFAULT NULL?)
    IS
    BEGIN
    send_mail
    p_sender => '&password_administrator',
    p_recipient => p_email,
    p_message => p_user &#0124; &#0124; 'Your new password is ' &#0124; &#0124; p_password
    EXCEPTION
    when OTHERS then
    raise NOTIFICATION_FAILURE;
    END;
    END wwsso_alert;
    show errors PACKAGE BODY wwsso_alert
    4. Create a page that calls the reset_password procedure to allows users to
    reset their passwords.
    Reset Password Page Example
    The following is an example of how to design a page for resetting a user's password.
    <HTML>
    <HEAD>
    <TITLE="Reset password">
    </HEAD>
    <BODY>
    <H1>Reset password</H1>
    <FORM ACTION="http://server.domain[:port]/pls/dad/
    schema.WWSSO_APP_ACCOUNT.RESET_PASSWORD">
    <B>User Name: </B>
    <INPUT TYPE="TEXT" NAME="p_user">
    <BR><BR>
    <INPUT TYPE="HIDDEN" NAME="p_back_url"
    VALUE="http://server.domain[:port]/pls/dad/schema.home">
    <INPUT TYPE="HIDDEN" NAME="p_error_url"
    VALUE="http://server.domain[:port]/pls/dad/schema.error">
    <INPUT TYPE="SUBMIT" VALUE="Reset Password">
    <FORM>
    </BODY>
    </HTML>
    After the password for a user name has been reset (p_back_url) to the reset_password proced ure, the page must pass at least a user name (p_user) and the URL of a page to which to return. The page may also pass the URL of a page to display if any errors are encountered (p_error_url).
    null

  • What is the password that gets generated when we reset the password in EP?

    Dear All,
    I have reset the password in the portal from User admin,
    It asks me to enter new password on login,
    but it says,
    password expired.
    I tried giving my own password through portal from user admin.
    It says password reset failed, password expired.
    I am unable to login into portal,
    Please suggest me a solution to get me back my password.
    The UM is linked to LDAP.
    I reset the password through LDAP also,
    Even then it is not reflecting for the portal.
    Please Suggest me the solution to make me login into portal.

    You can change the password from Visual administrator. login to visual administrator, and select services,, under that you will find the system details. change the password.
    even if the visual administrator password is expired then u can go thorugh configtoo.bat and there u can change the password.
    if that even not possible then u need to login to sql and can execute the commands for changing password.
    Regards,
    mahesh

  • How do i reset the password for cisco DMM 5.1 hardware machine

    Dear All,
               I have a cisco DMM 5.1 with some players installed on it, I can login to the dmm 5.1 via web browser but I cannot login the hardware directly through the console, I dont have the password for the console access, Could any one please help me resetting the password for the cisco DMM 5.1 physica server keeping the data and the configuration on the server intact.?
               Please help!!

    Dear Fahad,
    If you have lost your "admin" account password, it can be recovered using the "pwadmin" account as documented at the following link:
    http://www.cisco.com/en/US/docs/video/digital_media_systems/5_x/5_4/dms/aai/administration/guide/pwadmin.html#wp1079466
    If you have lost your "pwadmin" password as well, you'll need to open a TAC case and get a "DMS 5.1 pwadmin reset" ISO image via TAC. You can then boot the appliance with the provided CD to reset the "pwadmin" password, then login as "pwadmin" and reset the "admin" password from there.
    Regards,
    Marco

  • TS2446 I just got my iPad,  I have an iPod. When I go to put apps on it says my apple I'd Is disabled. I have reset the passwords. Somehow I have two id's?  I've gone into settings for apps signed out and back in with the new p.w.  I can't think of what e

    I just got my iPad,  I have an iPod. When I go to put apps on my new ipad it says my apple ID Is disabled. I have reset the passwords. Somehow I have two id's?  I've gone into settings for apps signed out and back in with the new p.w.  I can't think of what else to do to get the disabled block off.  Any ideas?? Thanks

    See this Apple document for help...
    http://support.apple.com/kb/ts2446

  • I have forgotten icloud account password linked to my ipad. I am unable to reset the password as well as delete this account from my ipad, and use a new one.

    I have forgotten icloud account password linked to my ipad. I am unable to reset the password as well as delete this account from my ipad, and use a new one.                                  

    None of us here, nor Apple, can help you.

  • I am trying to restore a backup onto my iphone from itunes but it asked me for a backup password which I cant remember, is there anyway that I can reset the password and not lose my backup?

    I am trying to restore a backup onto my iphone from itunes on a pc windows 8 but it asked me for a backup password which I cant remember, is there anyway that I can reset the password and not lose my backup? Any help is very appreciated

    Try entering the password on your iPhone

  • A friend created 3 accounts on his iPhone 5 but forgot the passwords. He can't reset the password as yahoo address is no longer valid. Erasing the phone doesn't solve the issue. How to register the phone with Apple?

    A computer illiterate friend created 3 accounts on his iPhone 5 but forgot the passwords. He can't reset the password as his yahoo address is no longer valid. Erasing the phone doesn't solve the issue as the Apple server identifies the hardware as registered. How to register the phone with Apple?
    I helped him create a new email address and new iCloud account on my Mac but when we try to register the phone with Apple it says: Maximim accounts limit reached for this device. How can he register the phone? I read different threads and found out that only Apple care can do that. We're in Romania and don't know where to call. Any suggestions on how we fix this?

    When I checked the support site for Romania, you apparently don't have an Apple Care contact center.  You "may" try calling the US Apple care number to verify the account and have the password reset sent to a different email address.  800-694-7466

  • How do I reset the password that allows me to download reader - I worked with chat help - we rest my password and I can get into my adobe account but when I try to download reader and work my way through the process when I get to the password it will not

    How do I reset the password that allows me to download reader.. I worked with chat help two hours last night - we have reset a password that lets me into my adobe account but in the download reader process that password will not work - where it says Adobe reader wants to change something and please type in password, just vibrates with the dots glowing purple but will not open…. what do I do to reset that password or get it to function. they would not assist me further they said its a free download and I would need to seek help from forums ( all this is new to me )
    so "forums" help…what do I do ?
    thank you
    PL

    patricia here again:
    I am the system administrator - personal computer
    I have been able with your lead to find the password I need , and to have install happen
    however - when I then go to the website to download the Pdf document I need I get a screen with the big red adobe icon that says to complete and down load this document I must launch adobe reader a dn sign the terms of agreement , close browser and reopen.
    but thatscren has no choice buttons whatsoever, I cannot find anywhere a adobe reader image to launch - been into launch pad , preferences etc.
    so now the loop is the pdf document and the adobe screen saying I must do terms of agreement
    like is this Kafka like or what ...
    suggestions?
    thanks
    P.

  • HT2518 How do you reset the password on a migrated user account? Mac wants the old password putting in before we can set a new password and the old password won't work.  How do we get around this?

    Used Migraton Assist to transfer data from old Dell PC onto new Macbook Pro.  Data has come across but cannota access the User Account from the Dell.  It is displayed on the desktop of the Mac but is requesting and new password.  Before we can reset the password we have to put in the old password.  We have put in the old password but it doesn't work and therefore we can't reset the password and get into the User Account. 
    How do we get around this problem so that we can access the User Account.
    Although the data has transferred we cannot see our contacts transferred from Outlook into Mail.  We are wondering if they are contained within our User Account, but can't find out until we can access the it?
    Help wold be much appreciated.
    Pensos

    Hello:
    Hopefully this will help you:
    http://support.apple.com/kb/PH4117
    Barry

  • I have two Apple ID's. One of them was compromised and I'm unable to reset the password. How do I disable it?

    I received an email stating that I had downloaded something from iTunes that I didn't download. I went in to reset the password on that account, but now I'm unable to; the emals aren't sending to my email account nor is my birthdate correct anymore. How do I get back control of that account or shut it down?
    Please help!
    ~Jules

    Ejects the harddrive?
    Of what did your old Mac die?
    It sounds to me like you have some file corruption somewhere.  Either in the transfer of your library to the external or the external itself is flaky if it keeps ejecting.

  • Two Apple IDs, one for Icloud - But can't reset the password

    I have 2 Apple IDs.  (No ide how - but I do). 
    Account A I can access - but I can't set it up for iCloud
    Account B - When I try to reset the password - it leads be back to account A
    When I look at My iPhone - In the iCloud setting  - it references the Account B address. 
    When I try to login to iCloud Desktop - If I try to get a new Password for account B, an email is sent to my account A email address, and all that I keep on doing is changing Account A's password.  I tried to answer the security questions - which I did - but was told that my dog's name is not what my dog's name is! 
    ALL that I want to do is enable iCloud so that I can sync my contacts with outlook and iPhone.  iTunes 11 does not permit you to do this without iCloud. 
    How can I resolve this?  Any ideas?

    I have this same issue and have since day one. I cannot seem to figure out how to get into icloud.

  • I chose to have my backup encrypted but can no longer remember my password how do I reset the password function?

    I have an iPhone 4S and decided one day to encrypt my backup function. Then after I started to receive information from my iPhone stating that it hasn't been updated in XX weeks, (actually now 23), I decided that maybe the problem was with the encryption. So I attempted to open up the backup using a password that I thought I had set up for it. But each time I tried this password and other variations of the password, I never was able to do so. I want to remove the encryption and have a straight forward backup if ever possible agian. I have tried everything I can think of to reset the password but without success. I would love it if someone could tell me a simple way of doing so, short of chanting mystical verses while swing a dead chicken over my head...(actually tried that too

    If you're using iCloud via Wi-Fi or backing up to the computer it is automatically encrypted (but on iTunes you can choose to encrypt it or not) but anyways if deleting the backup does not work you and you cannot remember that password for anything else including you're apple ID (if you used it) you may have to restore it.

  • Somebody has created an apple id using my gmail id. So I gave forgot password option and reset the password of the id. But for resetting the security questions, link is going to some other email id which is created by the other guy.How can I resolve this?

    When I tried to create and apple id using my gmail account i found that somebody has already created an apple id using my gmail id. So I gave forgot password option and reset the password of the id. But for resetting the security questions, link is going to some other email id which is created by the other guy. Now the problem is that the other guy also can reset my password and access my account.
    I contacted apple customer care and they are not ready to help me saying that I need to give information about the last device I logged in using this id. How can I give it when I did not create it?:) Also they are saying this account has been verified and that could happen only if someone has hacked my gmail account and verified the id using the link sent by apple.
    Later I did some experiments and found that this is a security flaw from apple. Somebody has created the id and never used it(I tried to loggin to icloud and it was saying this account was not used it any apple device). The account became verified when I reset the password.(This is a bug, account should be verified only when we click on the verification link sent by apple).
    The other mistake apple did is that they allotted my gmail account to someone before it's verified eventhough it cannot be used unless verified. Actually apple should allot the account id only after verifying the email address.
    Apple customer care is not ready to help and I am tired of fighting with them. Can any of you guys suggest any means of getting back my gmail id to use it as apple id?

    I don't think you're going to be able to. I would guess the other person used your address by accident, and when he found he couldn't access the account (because you'd changed the password) he abandoned it. Your GMail address is now locked to that account and even if it was changed you can't use it to create another.
    You already have an Apple ID, which you use to log in here; you can use that to create an iCloud account if that's what you are trying to do. If you want to create a different Apple ID just get another free address such as a Yahoo one.

Maybe you are looking for

  • IPhoto doesn't work on iPod Touch

    Hi there, On my iPad 2, I bought iPhoto. But I can't find it on my iTouch. Can it work on iPod Touches? When I went to "Purchased" in the App Store, I saw iPhoto, but when I clicked on its little cloud to download it, I got a notification saying it d

  • Activating Country version India for specific fiscal years

    hi guruz, what is the significance of the 'Activate Country version India for specific fiscal years' option in the SPRO -> Financial Accounting -> Financial accounting Global Settings -> Tax on Sales and purchase -> Basic Settings -> India -> Activat

  • Nokia Repair Center And Customer Service

    Hello, I am contacting you today regarding a problem that I have with the repair center. The reason that I am contacting YOU, is because no else (Email support or customer services phone numbers) that I have been dealing with seem to know they are do

  • Problem in update firmware

    hello my dear i have mobile nokia 6680 i try to update mobile from Internet but suddenly switch off and my mobile now become not working only logo for nokia and not working CAN YOU HELP ME ?

  • Mini Cooper not working with Lightning 30 pin Adaptor for iPhone5

    I have a 2012 Mini Cooper with a "standard" stereo.  I used to plug my iPhone 4 into the cord provided by Mini and it played my music & podcasts.  Now, with the Lightning to 30 pin Adapter to connect my iPhone5, my music is now only coming out of 1 s