简体   繁体   English

Netsuite已保存按发票搜索ID的列表否

[英]Netsuite Saved Search a list of ID's by invoice No

I have a request to extract specific Invoices, over the course of an year. 我要求提取一年内的特定发票。 For target invoices i have the following information to use: Invoice Number, Invoice date, Order Ref, Value and currency. 对于目标发票,我具有以下信息可使用:发票编号,发票日期,订单参考,值和货币。 I tried extracting few months at a time, but it's too much data. 我尝试一次提取几个月,但是数据太多。

Is there a way to filter on about 200 unique Invoice No in Netsuite? 有没有办法过滤Netsuite中大约200个唯一的发票编号?

Thank you, Daniel 谢谢你,丹尼尔

You can do this with a Formula(Numeric) filter in your criteria like this: 您可以在条件中使用Formula(Numeric)过滤器来执行此操作,如下所示:

Filter: Formula (Numeric)
Description: is greater than 0
Formula: INSTR(',SLS00000101,SLS00000102,SLS00000103,SLS00000104,SLS00000105,', ',' || {tranid} || ',')

Note that the initial string is a comma separated list of document numbers that begins and ends with a comma . 请注意,初始字符串是用逗号分隔的文档编号列表,以逗号开头和结尾

I'm not sure if there is an upper limit on formula size, but I've used this pattern to find a large number of transactions when I know the document numbers or internal IDs. 我不确定公式大小是否有上限,但是当我知道文档编号或内部ID时,便使用此模式来查找大量事务。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM