作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想使用 Suite Script 2.0 版本创建自定义搜索,将过滤条件作为 公式日期字段,并使用 NVAL2 函数
我在 UI 上实现此搜索作为“保存的搜索”,但我想在代码本身上创建它。
在 UI 上创建的搜索过滤器(保存的搜索):
我的代码:
var mySearch = search.create({
type: 'customrecord_configuration',
columns: ['custrecord_supervisor'],
filters: [
[
[
['custrecord_from_date', 'greaterthanorequalto', fromDate], 'AND', ['Formula Date', 'lesserthanoreqaulto', NVL2({
custrecord_end_date
}, {
custrecord_end_date
}, TO_DATE('01/01/2200', 'MM/DD/YYYY'))]
]
]
]
});
提前致谢。
最佳答案
Formula (Date) 列的内部 ID 为 formuladate
,您的公式值需要为字符串:
[
'formuladate', 'lesserthanoreqaulto',
"NVL2({custrecord_end_date}, {custrecord_end_date}, TO_DATE('01/01/2200', 'MM/DD/YYYY'))"
]
如果你用的是Chrome,你也可以试试this Chrome Extension这让您可以将 UI 搜索直接导出到代码。
关于javascript - 如何在 SuiteScript 2.0 版本中使用 NVAL2 函数使用过滤条件作为公式日期字段创建搜索,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39094570/
我是一名优秀的程序员,十分优秀!