设置销售订单保存搜索中的偏移量为+75分钟。

huangapple go评论47阅读模式
英文:

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

在运行测试时,我认为以下输出是您所需的:

设置销售订单保存搜索中的偏移量为+75分钟。

通过在RESULTS子选项卡中添加以下内容来实现上述效果:
设置销售订单保存搜索中的偏移量为+75分钟。

也就是说:

  • 字段 = 公式(数值)
  • 函数 = 数值作为时间
  • 公式 = ({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:

设置销售订单保存搜索中的偏移量为+75分钟。

The above is achieved by adding the following in the RESULTS subtab:
设置销售订单保存搜索中的偏移量为+75分钟。

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.

huangapple
  • 本文由 发表于 2023年6月5日 17:54:52
  • 转载请务必保留本文链接:https://go.coder-hub.com/76405258.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定