Creates a filter option for the a!recordFilterList() function.
This function, when used within the options
parameter in the a!recordFilterList() function, creates a user filter option. See the Expression-Based User Filters page for more information and common uses.
a!recordFilterListOption( id, name, filter, dataCount )
1
2
3
4
5
6
7
8
9
=a!recordFilterListOption(
id: 1,
name: "Active",
filter: a!queryFilter(
field: "status",
operator: "=",
value: "active"
)
)