I forgotten password of client 000/ddic

Hello All,
            I am working in sap ecc5.0 and I am working in client :810, user:sapuser and now I tried to open client 000 with user: sap* , p/w:06071992. and user:ddic, p/w:19920706, and I tried with the user:sap* , p/w:pass…but it is not opening…
Is there any othere way to open client :000 …because I want to use the t-code:stms…
This STMS t-code works only through client:000….
Try to give me the solution……
Because I need to open the client :000
Regards,
Sateesh.J

Try your master password - one that you typed during installation.
If that won't work simply delete user sap* from database and login with password "pass".
DELETE FROM USR02 WHERE BNAME='SAP*' AND MANDT='000';
Remember to set profile parameter login/no_automatic_user_sapstar=0.
Regs,
Filip
http://www.icg.pl/sap

Similar Messages

  • Forgot password for client 000 user DDIC

    We forgot password for client 000 user DDIC & SAP*
    please suggest any one how to recover the password
    Thanks in advance

    Hi,
    Pls refer below link explaining step by step details of activating SAP* user login.
    [http://forums.sdn.sap.com/thread.jspa?threadID=1497131]
    [http://www.sap-img.com/basis/changing-the-default-password-for-sap-user.htm]
    Regards,

  • How to reset ddic password for client 000 in MSSQL 2005 database

    SAP = ECC6
    DB = MSSQL 2005
    client = 000
    1. SAP* account was removed from the DB, can't be found in USR02 table.
    2. Only left ddic account and was locked. How can i reset ddic password?
    3. How can i unlock and reset my own password from the MSSQL database?

    You can unlock and reset passwords for DDIC and for your own user id in the following way:
    Please execute the below queries at your database level:
    To unlock user ids:
    SQL>update SAP<SID>.usr02 set flag=0 where bname="*user id*" and mandt=client number;
    SQL>commit;
    To reset the passwords:
    SQL>update SAP<SID>.usr02 set bcode="encrypted password" where bname="*user id*" and mandt=client number;
    SQL>commit;
    Then log into the system and execute /$sync
    hope this will help you.
    Regards,
    FAisal

  • Username passwords for client 000

    Dear All,
    I don't have credentials of SAP* DDIC in DEV QAS and PRD of client 000.
    Can you please let me know steps to recover the passwords?
    Please let me know the steps or ways . don't put external links
    Regards
    Nikhil

    Hi Nikhil,
    You follow below process to reset the password and login to your ABAP system
    1) set profile parameter login/no_automatic_user_sapstar=0 in instance profile
    2) Delete SAP* from database table from client 000
       SQL> delete from <schema>.<USR02> where bname='SAP*' and MANDT='000'
    3) Take restart of SAP application
    4) Login to 000 client with user = SAP* and password= pass
    5) Using this ID you can reset password for other users like DDIC.
    6) Once You can login with DDIC , you may create SAP* again using SU01.
    Hope this helps.
    Regards,
    Deepak Kori

  • Can I get password for client 000 and user SAP*

    Hi Experts,
    Can get ur help for getting password for User SAP* for client 000 i.e SAP std. client.
    please it's urgent.
    Thanks & Regards,
    Yogesh

    Hi ,
    <b>If all the users are locked, they can be unlocked by</b>
    a)Try this command at ur sql plus query level
    Go to cmd prompt.
    Sqlplus /nolog
    conn /as sysdba
    this will take you to the sqlprompt.
    Just execute the earlier commands there.
    sqlplus><b>UPDATE SAP<schema>.usr02 set uflag=0 where mandt=<CLNT NO> and uflag=64;</b> this statement actually unlocks the users of that particular client. So, try for every client in that sap system.
    b) You can delete sap* user
    Go to cmd prompt.
    Sqlplus /nolog
    conn /as sysdba
    sqlplus><b>DELETE SAP<SID>.usr02 where mandt='CLIENT.NO' and bname=SAP*;</b>
    <b>Note:-
    After doing this restart the system. So, that a new user with the name "sap" gets generated with password "pass". Provided the parameter is set login/no_automatic_user_sapstar= 0 (Automatic user SAP is permitted).</b>
    regards,
    kanthi

  • I forget the password for client 000

    Hi,
    Quite new to sap , I installed the sap 4.7 ides and after installation i forget the password of above client , so now when i want to
    run the sap gui to login it ask for a password which i forget , as i am new to sap the solutions provided on the internet sound complex to me for example it mentioned su01 , su02 and use of ABAP codes but i am not sure where to find these menu or transaction codes and how to execute them , if some one can provide me the answer with screen shorts that would be great .
    I hope to find the answer on this forum.
    Thanks
    Adnan

    Hi
    Try the below options:
    Options 1:
    Logon to any other client (except 0000) and Create the Program and run it with SAP* User.
    It will set the SAP* Password same as in your current client.
    REPORT Z_SAP_USER_PASSWORD_SET.
    Run this progam as sap* in cient xxx. The user you specify
    as a parameter, will have the same, client xxx password set in every
    client
    where it exists.
    TABLES: USR02, T000.
    DATA: PASSWD LIKE USR02-BCODE.
    PARAMETERS: USER LIKE USR02-BNAME.
    SELECT SINGLE * FROM USR02 WHERE BNAME = USER.
    IF SY-UNAME <> 'SAP*'.
    WRITE: / 'Only SAP* is allowed to run this program'. EXIT.
    ENDIF.
    IF SY-SUBRC <> 0.
    WRITE: / USER, 'user does not exist!'. EXIT. "No template user
    ENDIF.
    PASSWD = USR02-BCODE.
    CLEAR USR02.
    WRITE: / 'The password of', USER, 'updated in client:'.
    SELECT * FROM T000 WHERE MANDT <> '066' AND MANDT <> SY-MANDT.
    SELECT * FROM USR02 CLIENT SPECIFIED WHERE MANDT = T000-MANDT AND
    BNAME = USER.
    WRITE: / USR02-MANDT.
    USR02-BCODE = PASSWD.
    USR02-LTIME = SY-UZEIT.
    USR02-BCDA1 = USR02-BCDA2 = USR02-BCDA3 = SY-DATUM.
    USR02-BCDA4 = USR02-BCDA5 = SY-DATUM.
    UPDATE USR02 CLIENT SPECIFIED.
    ENDSELECT.
    ENDSELECT.
    Options 2:
    You can logon as DDIC and change the SAP* password
    Hope it helps......
    Edited by: Sivananda Penegalapati on Sep 6, 2010 9:10 AM

  • How do we reset password for SAP* and DDIC user in SAP R/3 ECC 6.0?

    Hi,
    How do we reset password for SAP* and DDIC user in SAP R/3 ECC 6.0?
    I tried with acual method as below from client '000':
    DELETE FROM USR02 CLIENT SPECIIED WHERE BNAME = 'SAP*' AND MANDT = '001'.
    After this when I tried to logon '001' using SAP* with password PASS it is giving  the message that Incorrect logon and password.
    (Also when I checked for 'SAP*' in 001 it looks like it is not got created as I queried as below:
    SELECT SINGLE * FROM USR02 CLIENT SPECIFIED WHERE BNAME = 'SAP*' AND MANDT = '001'.)
    Can anybody throw some light on this? RewardS is guranteed for solutions!
    -B S B

    Hi again:
    I forget to tell.
    You must restart the system. So, that a new user with the name "sap*" gets generated with password "pass"
    Hope this wil help,
    Eric

  • Error: The sap bw system must not be operated in client 000

    Hi
    I login as a client "200" and create new user "imran" and then login as a client 200 and user imran successfully but when I goto T.code RSOR it shows "the sap bw system must not be operated in client 000" when I check the status it shows client 200 and user imran.
    so what is the solution??
    Regards
    Imran

    hi
    Yes I create new client "200" in a sap* then I login as a client "200" user "sap*" and password "pass" then create new user "imran" using copy DDIC then login as client 200 and user imran but result is same.
    Edited by: iskhan on Nov 5, 2009 7:24 AM
    Edited by: iskhan on Nov 5, 2009 11:36 AM

  • Client -000 - locked

    Hi,
    We have not used Client-000 - SAP*/DDIC accounts recently and it got locked while trying to logon. Is there anyway for the Basis admin to unlock and reset the password.?
    Thanks,
    Sam

    Thanks..!!
    For benefit of others...
    http://www.sap-basis-abap.com/bc/forgot-password-for-user-id-sap-in-client-000.htm

  • Problem wuth sap* password in client 066

    Hi,
    I have jsut finish to install solution manger 4 on linux and i'm doing the post installation opération.
    I have try to connect in client 000 and 001 with sap* and ddic and all is ok.
    But with the client 066 i can't login with sap* ( i have enter the master password but nothing)...
    like i can connect with this user i conected on this client (066) with user EarlyWatch/support.
    i can launch the se16/usr02 and the 2 only user on this client are sap* and EarlyWatch....and i can't do the su01 transaction for unlock and give a password to sap*....
    I have seen that with Brtool i can modifie a password but ihave never done this opération before and i wanted to knwo if the information in this link are good ( according to you)
    http://fdf.cod.free.fr/screen1.JPG
    http://fdf.cod.free.fr/screen2.JPG
    If i accept to Continue with the brtool does sap* will be modifie with the password and more important does sap*  will be unloked?
    thx for any help.
    Edited by: Fabrice BABY on Mar 13, 2008 4:13 PM

    Hello Fabrice,
    >> I have try to connect in client 000 and 001 with sap* and ddic and all is ok.
    That is ok.
    >> But with the client 066 i can't login with sap* ( i have enter the master password but nothing)...
    That is ok, too. Please refer to the following documentation:
    http://help.sap.com/saphelp_nw04/helpdata/en/52/671785439b11d1896f0000e8322d00/content.htm
    Clients 000, 001 and 066 are created when your SAP System is installed. Two special users are defined in clients 000 and 001. Since these users have standard names and standard passwords, you must secure them against unauthorized use by outsiders who know of their existence.
    Note that no special user is created in client 066
    >> I have seen that with Brtool i can modifie a password but ihave never done this opération before
    You can modify the password of the database users with the brtools ... not for SAP*.
    Please refer to the following documentation:
    http://help.sap.com/saphelp_nw70/helpdata/en/4f/c3883989676778e10000000a11402f/content.htm
    Regards
    Stefan

  • Password for client 800

    Dear All,
    After I install 4.7 IDES, I have SAP* and DDIC in client 000, but I can not logon to client 800, the user and password is not correct.
    regards
    Gang

    Hi Gang,
    Normally for a undistributed system you would find 3 profiles under the tcode rz10.
    Default, Instance (Eg: SID_DVEMGS00_HOSTNAME), Start. You can add the parameter login/no_automatic_user_sapstar with value 1 in the Instance or the Default profile. and restart the SAP engine.
    If you are unable to see anything under the Profiles in RZ10 click Utilities>Import Profiles>Of Active servers..in RZ10 and save the entries.
    Let us know if it helped you...and reward points to all those whose answers helped you..
    Cheers,
    Prashant.

  • Transfer Users from Clients 000, 001 & 066 Into CUA

    I have CUA setup and currently I have all clients in all systems in CUA except for clients 000, 001 & 066. My first thought is to add these clients to CUA and tranfer users sap* & ddic. It seems to be a good way to make sure the 2 accounts passwords are easily changed and managed across the board. I already have trusts to all of the systems so it would be very easy to bring in these clients without much work. Are there any downsides to bringing in these clients and transferring sap* & ddic?

    Hi Robert,
    Here is my opinion :
    I, personally, do not feel that activating CUA for 000, 001, 066 is a good idea. I would consider other options then CUA to ease 000, 001, 066 maintenance. If, for some reason, I have to use CUA for 000, 001, 066, I would create a specific client in a central CUA for management only these three clients but not the others.
    Regards,
    Mike

  • Use of clients 000 and 001 & their differences?

    hi guys,
    Any one explan me the use of predefined clients 000 and 001
    The differences between them

    Hi,
    Clients 000, 001 and 066 are standard clients that are pre-delivered by SAP. These clients are not supposed to be used in development, quality and production environments.
    Client 000 is basically used as working client only when you do support pack upgrade or ABAP load generations (SGEN) and implementing additional languages, etc. Otherwise, client 000 should not be used as a working client. The same applies to client 001. But the only exception with 001 is, with Solution Manager, 001 will be your working client. You will do all configurations and obtain support from SAP through this client. With other Systems like BW and CRM, this client (001) will not be a working client. Two standard users (SAP* and DDIC) are defined in the clients 000 and 001.The client 066 is used only for EarlyWatch functions (Monitoring and performance). The user EarlyWatch is delivered in client 066 and is protected using the password SUPPORT. This password needs to be changed for security purposes.
    Rgds,
    Suman

  • How to Reset Password of Client 800 in SQL server2005 of IDES Ecc6.0

    Dear All,
    how to Reset Password in SQL server of Client 800 IDES Ecc6.0.
    & what will be its password.
    with best regards.
    Ishtiaq

    Hi
    Simple logic we have sap* and ddic as default users if you are unable to login to client 800 with any of the user then you need to delete the user sap* from database level so that it will be recreated again and you can login as sap* and password as pass here is the procedure
    login to ora<sid>
    execute the sql statement
    delete from usr02.sapr3 where bname = 'SAP*' and mandt = '800';
    commit;
    sapr3 is your schema id
    You also need to check parameter login/no_automatic_user_sapstar is set to 0 so you can logon as SAP* password pass
    If the parameter doesn't exist then maintain in instance profile
    /usr/sap/SID/SYS/profiles/SID_DVEBMGS00_Host
    Unfortunately you'll need a system restart to enable and disable the parameter
    You can also refer to below links
    http://www.sap-img.com/basis/changing-the-default-password-for-sap-user.htm
    http://www.sap-basis-abap.com/bc/forgot-password-for-user-id-sap-in-client-000.htm
    Let me know if you need more help
    Regards
    Uday

  • Client 000, 001 and 066

    Hi everyone,
    Pretty new to SAP.
    I am struggling to find answers to the following questions:
    How do you use client 000, 001 and 066?
    Apart from initial installation and support (066) can theses clients be used in development, testing and production environements?
    Can 000 and 001 be used as working clients or should they only be used as template?
    What should their configurations be when using SCC4 for each system inthe landscape: DEV, QA and PROD (and Solution Manager)
    From a security point of view, once SAP*, DDIC have been secured should they be any other users (Dialog, System) in these clients?
    Sorry quite a few questions but if anyone could give me direction as I am trying to understand if some of our current settings are correct and if not why.
    Thank you

    Hi Corinne,
    Even though it is a very basic question, it is very essential to understand and find an answer to your questions.
    Client 000, 001 and 066 are (as you know) standard clients thats pre-built when you install SAP.
    "Apart from initial installation and support (066) can theses clients be used in development, testing and production environements?"
    Answer: No, they cannot be used for development, testing or production environments. When I say, "they cannot", I mean they are not supposed to be used.
    "Can 000 and 001 be used as working clients or should they only be used as template?"
    Answer: Client 000 is basically used as working client only when you do support pack upgrade or ABAP load generations (SGEN) and implementing additional languages, etc. Otherwise, client 000 should not be used as a working client. The same applies to client 001. But the only exception with 001 is, with Solution Manager, 001 will be your working client. You will do all configurations and obtain support from SAP through this client. With other Systems like BW and CRM, this client (001) will not be a working client.
    "What should their configurations be when using SCC4 for each system inthe landscape: DEV, QA and PROD (and Solution Manager)"
    Answer: In the production system - "Changes and Transports for Client-Specific Objects" should be set to "No Changes allowed". "Cross Client Object Changes" should be set to "Changes to Repository and Cross-Client Customizing Allowed". "Protection: Client copier and comparison Tool" must be set to "Protection Level 1: No Overwriting". Same applies to Quality System and Development System. These are by-the-by default settings also when you install the system.
    "From a security point of view, once SAP*, DDIC have been secured should they be any other users (Dialog, System) in these clients?"
    Answer: Once you install the system, you must first make a copy of DDIC to any user you create in your name or any standard name. Never use DDIC when you do initial settings after the installation.
    The following link might be of some help to you.
    http://help.sap.com/saphelp_nw2004s/helpdata/en/7e/c8189452c511d182c50000e829fbfe/frameset.htm
    Hope this helps.
    Thank you.

Maybe you are looking for

  • In Address book print window opened too large for window.  Unable to close

    Using Address book,   trying to print lables for a group, print window opened to large for window.... cannot cancel or close out.

  • GETURL not working in exported movie

    I hate to beat a dead horse but I'm at my wit's end. I've tried everything I have read online and it still doesn't work... I have created a keyframe at the end of my flash with... getURL("www.blahblahblah.ca/underconstruction.html"); I export the fla

  • Required Disk when synching...help

    every time i try and sync my ipod with the cds ive downloaded on my computer, it says it cannot be synched and the required disk is not found...what is the required disk and how do i remedy this? i didnt have this problem on the last computer i had..

  • Purchase issue

    Purchase issue

  • Workflow  function modules

    I have a problem in my workflow email creator submitted a request to approver through workflow. work flow needs to send an email to approver that part is working fine for me.if request approved or rejected workflow needs to send an email to creator t