cancel
Showing results for 
Search instead for 
Did you mean: 

ERROR INSTALLATION ERROR SAP NetWeaver 7.0 (2004s) SR2

Former Member
0 Kudos

Hi Gurus,

We are busy installing SAP NetWeaver 7.0 (2004s) SR2 (ABAP+JAVA) with an Oracle 10.2 DB.

We get the following error during the installation.

WARNING 2008-09-12 08:02:52.947

Execution of the command "C:\j2sdk1.4.2_18-x64\bin\java.exe -Xmx64M -Djava.ext.dirs=K:\usr\sap\CR1\DVEBMGS00\SDM_tmp\lib -jar K:\usr\sap\CR1\DVEBMGS00\SDM_tmp\SDM.jar autoinstall sdmHome=K:\usr\sap\CR1\DVEBMGS00\SDM\program popDir=K:\usr\sap\CR1\DVEBMGS00\SDM_tmp sdmRoot=K:\usr\sap\CR1\DVEBMGS00\SDM\root javaHome=C:/j2sdk1.4.2_18-x64 Sdmadminport=50017 Sdmguiport=50018 Sdmhttpport=50019 hostname=csiides extractpackedinst=true" finished with return code 12. Output:

Invalid parameter "hostname" for SDM command "autoinstall"

Syntax error. Return code: 12

ERROR 2008-09-12 08:02:52.947

MUT-01014 Call of SDM API autoinstall ends with error code 12. Log file SDMautoinstall.log, log file content: \n

Invalid parameter "hostname" for SDM command "autoinstall"

Syntax error. Return code: 12

Accepted Solutions (0)

Answers (1)

Answers (1)

Former Member
0 Kudos

Hi,

I had this same problem when installing CRM 2007.

To solve it, I had to edit the file

C:\Program Files\sapinst_instdir\CRM2007\SYSTEM\MSS\CENTRAL\AS\control.xml

Use the search function from notepad to find the string "autoinstall".

Modify this paragraph

var callArgs = ["autoinstall",

"sdmHome=" + FSPath.getPath(sdmHome + "/program").toStringOS(),

"popDir=" + tempPath.toStringOS(),

"sdmRoot=" + FSPath.getPath(sdmHome + "/root").toStringOS(),

"javaHome=" + javaHome,

"Sdmadminport=" + ports.adminPort,

"Sdmguiport=" + ports.guiPort,

"Sdmhttpport=" + ports.httpPort,

"hostname=" + hostname,

];

To remove the line * "hostname=" + hostname,*

Save the control.xml file, relaunch sapinst.exe and choose "Continue old installation".

It worked for me !

Olivier