<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Forgot password in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/forgot-password/m-p/2515353#M569036</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Perhaps you should first create the client once again, and the default system users are created along with the client.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 29 Aug 2007 11:51:37 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-08-29T11:51:37Z</dc:date>
    <item>
      <title>Forgot password</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/forgot-password/m-p/2515349#M569032</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have SAP R/3 4.7 installed. I forgot the password. &lt;/P&gt;&lt;P&gt;Pls. let me know how to login without password or reset the login.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Points will be rewarded.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 20 Jul 2007 04:00:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/forgot-password/m-p/2515349#M569032</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-20T04:00:12Z</dc:date>
    </item>
    <item>
      <title>Re: Forgot password</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/forgot-password/m-p/2515350#M569033</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Check this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can delete sap* &lt;/P&gt;&lt;P&gt;Go to cmd prompt.&lt;/P&gt;&lt;P&gt;Sqlplus /nolog&lt;/P&gt;&lt;P&gt;conn /as sysdba&lt;/P&gt;&lt;P&gt;sqlplus&amp;gt;DELETE SAPSR3.USR02 WHERE MANDT='CLIENT.NO' and BNAME=SAP*; &lt;/P&gt;&lt;P&gt;after doing this restart the system. So, that a new user with the name "sap&lt;STRONG&gt;" gets generated with password "pass". Provided the parameter is set login/no_automatic_user_sapstar= 0 (Automatic user SAP&lt;/STRONG&gt; is permitted). &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;OR&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Below is the query for resetting the flag&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;UPDATE prd.USR02 set UFLAG = '00' where MANDT =&lt;/P&gt;&lt;P&gt;'000' and bname= 'DDIC';&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here prd is the database name; UFLAG is the field which we need to set to 0, MANDT represents in which client the login belongs to and BNAME is the field which contains logins. If you want to reset the flag for SAP* when it gets locked then replace DDIC with SAP* in above query.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This has answered many times !!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Note: Points always encourage me to reply !!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 20 Jul 2007 04:55:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/forgot-password/m-p/2515350#M569033</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-20T04:55:23Z</dc:date>
    </item>
    <item>
      <title>Re: Forgot password</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/forgot-password/m-p/2515351#M569034</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi ,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If all the users are locked, they can be unlocked by&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;a)Try this command at ur sql plus query level&lt;/P&gt;&lt;P&gt;Go to cmd prompt.&lt;/P&gt;&lt;P&gt;Sqlplus /nolog&lt;/P&gt;&lt;P&gt;conn /as sysdba&lt;/P&gt;&lt;P&gt;this will take you to the sqlprompt.&lt;/P&gt;&lt;P&gt;Just execute the earlier commands there.&lt;/P&gt;&lt;P&gt;sqlplus&amp;gt;&amp;lt;b&amp;gt;UPDATE SAP&amp;lt;schema&amp;gt;.usr02 set uflag=0 where mandt=&amp;lt;CLNT NO&amp;gt; and uflag=64;&amp;lt;/b&amp;gt; this statement actually unlocks the users of that particular client. So, try for every client in that sap system.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;b) You can delete sap* user&lt;/P&gt;&lt;P&gt;Go to cmd prompt.&lt;/P&gt;&lt;P&gt;Sqlplus /nolog&lt;/P&gt;&lt;P&gt;conn /as sysdba&lt;/P&gt;&lt;P&gt;sqlplus&amp;gt;&amp;lt;b&amp;gt;DELETE SAP&amp;lt;SID&amp;gt;.usr02 where mandt='CLIENT.NO' and bname=SAP*;&amp;lt;/b&amp;gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;Note:-&lt;/P&gt;&lt;P&gt;After doing this restart the system. So, that a new user with the name "sap&lt;STRONG&gt;" gets generated with password "pass". Provided the parameter is set login/no_automatic_user_sapstar= 0 (Automatic user SAP&lt;/STRONG&gt; is permitted).&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;kanthi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 20 Jul 2007 06:25:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/forgot-password/m-p/2515351#M569034</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-20T06:25:24Z</dc:date>
    </item>
    <item>
      <title>Re: Forgot password</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/forgot-password/m-p/2515352#M569035</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI everyone,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Manoj here.&lt;/P&gt;&lt;P&gt;I am having problem with SAP* users password.&lt;/P&gt;&lt;P&gt;i am dng client referesh activity for client 950,then after client deletion for i am tring to login through SAP* user in client 950.&lt;/P&gt;&lt;P&gt;but it showing user lcoked.&lt;/P&gt;&lt;P&gt;then i tried to reset password from command prompt ,but it is giving error USR02 table does not exit&lt;/P&gt;&lt;P&gt;how can i reset the password for SAP* user in client 950(data is deleted from client.)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 22 Jul 2007 22:47:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/forgot-password/m-p/2515352#M569035</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-22T22:47:29Z</dc:date>
    </item>
    <item>
      <title>Re: Forgot password</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/forgot-password/m-p/2515353#M569036</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Perhaps you should first create the client once again, and the default system users are created along with the client.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 29 Aug 2007 11:51:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/forgot-password/m-p/2515353#M569036</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-29T11:51:37Z</dc:date>
    </item>
  </channel>
</rss>

