gpt4 book ai didi

netsuite - 如何使用 web 服务在 netsuite 中添加新的自定义记录项?

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

我创建了一个名为“XYZ”的新自定义记录,并在其中创建了所有字段。现在我可以使用 GUI 在该自定义记录上添加新条目,但是我如何使用 web 服务执行类似的操作。

需要调用什么方法来在自定义记录类型中添加新项目以及我们如何做。任何帮助将不胜感激。

谢谢

最佳答案

下面是使用 SuiteTalk(网络服务)添加自定义记录的示例 C# 代码 -

CustomRecord customRecord = new CustomRecord();

RecordRef recordType = new RecordRef();
recordType.internalId = "14"; // // Record Type's internal ID (Setup > Customization > Record Types > Basic Record Type (Internal ID=14)
recordType.type = RecordType.customRecord;
recordType.typeSpecified = true;

customRecord.recType = recordType;
customRecord.internalId = "7"; // internal id of the custom record you want to update

StringCustomFieldRef stringCustomFieldRef = new StringCustomFieldRef();
stringCustomFieldRef.scriptId = "custrecord_pe_pbmastertrackno";
stringCustomFieldRef.value = txtMasterTrackno.Text.Trim();

CustomFieldRef[] customFieldRef = new CustomFieldRef[1];
customFieldRef[0] = stringCustomFieldRef;

customRecord.customFieldList = customFieldRef;

_service = new NetSuiteService();

setPassport(); // Set the Passport information for authentication
WriteResponse writeResponse = _service.add(customRecord);

希望对您有所帮助。

谢谢。

关于netsuite - 如何使用 web 服务在 netsuite 中添加新的自定义记录项?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38731108/

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