在 Netsuite API 中调用 nlapiSearchGlobal(keywords) 方法是否有任何限制?
Is there any limit to call nlapiSearchGlobal(keywords) method in Netsuite API?
我需要多次调用nlapiSearchGlobal(keywords)
API方法。在 Netsuite API 文档中,它描述了如下方法:
nlapiSearchGlobal(keywords)
Performs a global search against a single keyword or multiple
keywords. This API is supported in client, user event, scheduled,
portlet, and Suitelet scripts. Usage metering allowed for
nlapiSearchGlobal is 10 units.
这是什么意思?
对于脚本的每个 运行 实例,Netsuite 对脚本对 API 函数的使用实施限制。例如,用户事件脚本允许使用 1000 个总单位,因此如果您调用 nlapiSearchGlobal()
超过 100 次,您的脚本将抛出 "Usage Exceeded Error",您的脚本将需要重新启动以重置限额.
您可以在“SuiteScript Governance”部分的 Netsuite 文档中阅读有关此主题的更多信息。
我需要多次调用nlapiSearchGlobal(keywords)
API方法。在 Netsuite API 文档中,它描述了如下方法:
nlapiSearchGlobal(keywords)
Performs a global search against a single keyword or multiple keywords. This API is supported in client, user event, scheduled, portlet, and Suitelet scripts. Usage metering allowed for nlapiSearchGlobal is 10 units.
这是什么意思?
对于脚本的每个 运行 实例,Netsuite 对脚本对 API 函数的使用实施限制。例如,用户事件脚本允许使用 1000 个总单位,因此如果您调用 nlapiSearchGlobal()
超过 100 次,您的脚本将抛出 "Usage Exceeded Error",您的脚本将需要重新启动以重置限额.
您可以在“SuiteScript Governance”部分的 Netsuite 文档中阅读有关此主题的更多信息。