cancel
Showing results for 
Search instead for 
Did you mean: 

Cant` login on SAP 7.03 trial

Former Member
0 Kudos

Hello,

i have installed SAP NetWeaver Application Server ABAP 7.03 SP04 Trial  on my 64 windows 7 system. But After the installatiaon i tried to log on, on the system with this parameters:

localhost , systemnumber: 00 and systemid: nsp  ( that stands in the install information...)

now i want try several times to log in with the 2preusers (

DDIC and SAP* ) It dont function: The Error is

password logon no longer possible---too many failed attempts

with the both users.... and the BCUser with pw: abcd1234 dont function. What can i do now? to solve this problem....  ? i start it with my windows own windows account....the server was startet over the sap management console.... I hope you can help. Thanks for you, and sry my bad english.

Best regards...

Accepted Solutions (0)

Answers (1)

Answers (1)

former_member218171
Participant
0 Kudos

Hi,

In SAP there's a parameter called login/no_automatic_user_sapstar with default value is 1. If the value is set to 1 automatic login of sap* into SAP system using password PASS won’t be allowed. So try to set the value of the parameter to 0 in both the default profile and the instance profile and restart the instance. Automatic login of sap* with default password will be enabled.

For example my profiles are located in the following path: DRIVE:\usr\sap\SID\SYS\profile and they are called DEFAULT.PFL and SID_DVEBMGS00_HOST

Hope it helps!

Cheers!

Former Member
0 Kudos

Hello Sir,

thanks for your help, but it dont function. In The profile folder i have only 4 files - ( not SID_DVEBMGS00_HOST )

and on the default.pfl . There isn`t a entry with "login/no_automatic_user_sapstar "

here:

You have a solution?  or someone else ?

thanks

Former Member
0 Kudos

I have do an new entry on 

NSP_DVEBMGS00_HOST and

DEFAULT.PFL

with the value:

login/no_automatic_user_sapstar = 0

but it dont function,  i get the same message:

password logon no longer possible---too many failed attempts

can someone help pls ? i have the trial version? should or can i new insall the system? is that possible? what can i do???


former_member218171
Participant
0 Kudos

Reactivate locked SAP*

- Connect to the Server as <sid>adm

- Open CMD and connect to the DB

     sqlplus /nolog

     connect /as sysdba

- Execute commands:

          DELETE FROM <DBSCHEMA>.usr02 WHERE bname='sap*' AND mandt='XXX'; (schema is usually SAPSR3 and mandt 000)

          COMMIT;

- Restart the System

- Logon to the SAP system with password PASS

Also check OSS note 806819

Hope it helps!

Former Member
0 Kudos

Sir,

i tried it. But on Cmd i dont have the sommand sqlplus /nolog , it is not found:

i searched on windows sqlplus, not found something. Tried on cmd sqlplus many thins, not found somethin with sqlplus.

Then i found SAPMAXDP, there i go to NSP - Command Prompt

on this comand, i try again sqlplus /nolog , and it dont function:

hmm i have the trial version of sap...is that the problem? very hard to install sap i want use it.... to learn abap programming....

former_member218171
Participant
0 Kudos

Hi Gorkan,

The problem is that I gave you the procedure for an Oracle database, has I saw in you screenshot you have a MaxDB database... You need to run the query that I gave you above but first you need to connect to your MaxDB database... please try using SQLCLI:

sqlcli -d NSP -u USER,PASSWORD -S INTERNAL

DELETE FROM <DBSCHEMA>.usr02 WHERE bname='sap*' AND mandt='XXX'; (schema is usually SAPSR3 and mandt 000)

Good luck!