英文:
Set Offset = +75 minutes in Sales Order saved search
问题
如何在NetSuite的销售订单保存搜索中设置偏移量为+75分钟(这是为了取消原因),您能否通过应用任何过滤器为我提供详细信息?
我尝试在条件中使用过滤器,但我没有看到任何偏移字段。
英文:
How do I set Offset = +75 minutes (this is for cancellation reasons) in SalesOrder saved search in NetSuite , can you provide me in any detail by applying any filters?
I tried by using filters in criteria , but I haven't seen any offset kind of field.
答案1
得分: 0
在运行测试时,我认为以下输出是您所需的:
也就是说:
- 字段 = 公式(数值)
- 函数 = 数值作为时间
- 公式 = ({today} - {lastmodifieddate}) * 1440
在这个示例中,TODAY的日期与记录的LAST MODIFIED日期进行比较,以输出以分钟为单位的时间差异。
根据您的要求,您只想返回时间差异大于75分钟的记录;因此,您需要将以下内容添加为保存搜索中的过滤器:
- 单击CRITERIA子选项卡
- 过滤器 = 公式(数值)
- 描述 = 大于75
- 公式 = ({today} - {lastmodifieddate}) * 1440
如果您想跟踪记录的DATE CREATION,请相应地将{lastmodifieddate}更改为{datecreated}。
希望对您有所帮助。
英文:
Upon running tests, I believe the following output is what you need:
The above is achieved by adding the following in the RESULTS subtab:
That is:
- FIELD = Formula (Numeric)
- FUNCTION = Number as Time
- FORMULA = ({today} - {lastmodifieddate}) * 1440
In this example, TODAYs date is compared against the LAST MODIFIED date of the record to output the time difference in minutes.
For your requirement, you want to only return records where the time difference is GREATER THAN 75 minutes; thus you will need to add the following as a filter in your saved search:
- Click the CRITERIA subtab
- Filter = FORMULA (numeric)
- Description = IS GREATER THAN 75
- Formula = ({today} - {lastmodifieddate}) * 1440
If you are seeking to track the DATE CREATION of record, then change {lastmodifieddate} to {datecreated} accordingly.
Hope this helps.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论