Mark
06/09/2025, 7:39 PMCeligo AI
06/09/2025, 7:39 PMAI generated answer (using internal Slack threads):****** Disclaimer: This response was generated by an artificial intelligence assistant based on previous conversations from multiple Slack channels, and may contain inaccuracies or mistakes. ****** To limit the
trandate
to on or after one month ago in SuiteScript, you can use the search.createFilter
method with the search.Operator.AFTER
operator and the value monthsago1
. Here is a sample code snippet:
javascript
filters.push(search.createFilter({
name : 'trandate',
operator : search.Operator.AFTER,
values : ['monthsago1']
}));
This code will create a filter that only includes transactions with a trandate
that is on or after one month ago.Celigo AI
06/09/2025, 7:39 PMSlack thread 1: here (available only if the original thread was posted in the last 90 days)
Similarity score: 0.807332098
Slack thread 2: here (available only if the original thread was posted in the last 90 days)
Similarity score: 0.801582694
Slack thread 3: here (available only if the original thread was posted in the last 90 days)
Similarity score: 0.798833728
Celigo AI
06/09/2025, 7:40 PM