During the Installation at point "Prepare to install minimal configuration" I'm getting the following error message:
An error occurred while processing option <i>SAP Solution Manager 7.1 > SAP Systems > MS SQL Server > Central System > Central System( Last error reported by the step :Assertion failed: in
function NW_Call_Offline_CTC_ind_ind_ind_ind_SubComponentContainer_callOfflineCTC() {
var nw = NWInstall.getSystem(context.get("sid"));
var ctcDirFs = nw.getCI().getInstanceDir().concat("j2ee", "ctc");
var ctcExeFile = installer.onWindows() ? "LaunchOfflinectc.bat" : "LaunchOfflinectc.sh";
var ctcCall = ctcDirFs.concat(ctcExeFile);
installer.writeTrace("CTC is in" + ctcCall);
ASSERT(arguments.callee, ctcCall.isExisting(), "CTC executable cannot be found in " + ctcCall.toString());
var pmgt = new ProcessMgt();
var app = pmgt.createChildApplication(ctcCall, []);
var userData = nw.getUsers().getAccountData(NWUsers.roles.SIDAdm);
var user = (new AccountMgt()).getUser(userData.name);
var env = pmgt.getProcessEnvironment();
if (installer.onUnix()) {
env.setUser(user);
} else {
if (installer.onOS400()) {
env.setUser(user);
env.setGroup(user.getPrimaryGroup());
env.setKernelLibrary(nw.getOS4_Krnlib());
}
}
env.setWorkingDirectory(ctcDirFs.getNode());
var javaHome = nw.getJavaHome().toString();
env.setEnvironmentVariable(new Property("JAVA_HOME", javaHome));
installer.writeTrace("For the Offline CTC Call, JAVA_HOME is set to " + env.getEnvironmentVariable("JAVA_HOME"));
app.setEnvironment(env);
var retval = app.run([], true);
ASSERT(arguments.callee, retval == 0, "CTC retval is not 0 but " + retval);
installer.writeTrace("CTC has been called in Offline Mode.");
}
CTC retval is not 0 but 1)
As a JVM I'm using the version provided by SAP on DVD, JDK is ver6_26-rev_b21, JCE_policy is version 6.
Can anyone help me here?