LC
05/07/2024, 3:42 PMSteve Goldberg
05/07/2024, 3:48 PM// Look for this
const hostnameStep1 = this.vm ? hostName : `rest${molecule}.<http://netsuite.com|netsuite.com>`;
// Change it to this
const hostnameStep1 = this.vm ? hostName : `system${molecule}.<http://netsuite.com|netsuite.com>`;
In some older versions of the tools, it will look like this:
// Look for this
var hostnameStep1 = this.vm ? hostName : "rest" + molecule + ".<http://netsuite.com|netsuite.com>";
// Change it to this
var hostnameStep1 = this.vm ? hostName : "system" + molecule + ".<http://netsuite.com|netsuite.com>";
Steve Goldberg
05/07/2024, 3:48 PMLC
05/07/2024, 3:55 PMSteve Goldberg
05/07/2024, 4:06 PMSteve Goldberg
05/07/2024, 4:06 PMLC
05/07/2024, 4:13 PMLC
05/07/2024, 4:42 PMLC
05/07/2024, 4:49 PM