如何在Netsuite中搜索供应商信用

本文关键字:供应商 搜索 Netsuite | 更新日期: 2023-09-27 18:21:06

我使用Suitetalk C#从Netsuite获取数据。

在我的情况下,我需要将供应商信用数据拉到我的应用程序中。因此,我创建了一个搜索方法,但我不知道如何应用这样的搜索标准:

1) 我只需要提取未申请的供应商信用。

2) 我只需要在供应商账单列表中提取已申请的供应商信用。

如何在Netsuite中搜索供应商信用

为此,我将从UI 创建一个保存的交易搜索

1) 未申请的供应商信用

Applied to Transaction is -None-

2) 100%申请供应商信贷标准为

A) Formula (Numeric) {amount} + {appliedtolinkamount} is 0
 B) Applied to Link Amount is greater than 0.0

3) 应用(部分或全部)

Applied to Transaction is not -None-

在每次搜索中,您都希望输入像type is Bill CreditMain Line is true 这样的过滤器

然后我会从UI中获得保存的搜索ID,然后使用下面的伪代码通过SuiteTalk 获得搜索结果

// Create a service 
NetSuiteService nss = new NetSuiteService();
// Perform the search. Note that you can get the saved search ID using 
// either getSavedSearch() or through the UI
TransactionSearchAdvanced tsa1 = new TransactionSearchAdvanced();
tsa1.savedSearchId="57";  //substitute your own saved search internal ID
nss.search(tsa1);