在客户端脚本中执行命令后如何重定向到记录类型。更好地解释一下,我在客户端脚本中,单击按钮后,会以另一种记录类型生成一条新记录,我想重定向到那里。谢谢我需要在执行程序后离开这个页面,并被重定向到我刚刚创建的记录
1 回答
慕村9548890
TA贡献1884条经验 获得超4个赞
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);
添加回答
举报
0/150
提交
取消