如标题所示,如何通过其他字段(例如:客户名称)搜索Netsuite内部ID?谢谢
答案 0 :(得分:0)
您可以使用以下内容来获取客户内部ID
var customerSearchResult = search.create({
type: 'customer',
filters: [{ name: 'entityid', operator: 'is', values: CUSTOMER_NAME }]
}).run().getRange({ start: 0, end: 1 });
var customerInternalId = customerSearchResult[0].id;
其中,entityid
是客户名称字段的ID,而 CUSTOMER_NAME 是您要搜索的客户名称