在客户端脚本中执行命令后,如何重定向到记录类型。更好的解释是,我在客户端脚本中,单击按钮后,会以另一种记录类型生成新记录,我想在那里重定向。
谢谢
执行完这些步骤后,我需要离开此页面,并重定向到我刚刚创建的记录
答案 0 :(得分:1)
var newType = <NetSuite ID of record type>;
// making new record code
var newId = newRecord.save();
// performing the procedures
// Requires the N/url module
var output = url.resolveRecord({
recordType: newType,
recordId: newId,
isEditMode: true
});
window.location.replace(output);