如何使用客户名称搜索客户内部ID? Suitescript 2.0

时间:2018-12-26 10:07:30

标签: suitescript2.0

如标题所示,如何通过其他字段(例如:客户名称)搜索Netsuite内部ID?谢谢

1 个答案:

答案 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 是您要搜索的客户名称