gpt4 book ai didi

netsuite - 如何在 SuiteScript 2 的文件柜中创建文件夹

转载 作者:行者123 更新时间:2023-12-01 08:09:08 25 4
gpt4 key购买 nike

如何在 SuiteScript 2.0 中创建一个新文件夹并将其保存到文件柜中?

var folder = record.create({
type: record.Type.FOLDER,
});

folder.save()

我错过了什么?

最佳答案

这是使用 SS2.0 创建文件夹的片段:

        var objRecord = record.create({
type: record.Type.FOLDER,
isDynamic: true
});
objRecord.setValue({
fieldId: 'name',
value: 'Test Folder'
});
var folderId = objRecord.save({
enableSourcing: true,
ignoreMandatoryFields: true
});

关于netsuite - 如何在 SuiteScript 2 的文件柜中创建文件夹,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49260728/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com