Free cookie consent management tool by TermsFeed a!recordFilterChoices() Function
a!recordFilterChoices() Function

Function

a!recordFilterChoices( choiceLabels, choiceValues )

Creates choices of a user filter for an expression-backed record.

See also: Record Type Object

Parameters

Keyword Type Description

choiceLabels

List of Text String

The list of text to be displayed to the user as the filter choices.

choiceValues

List of Variant

The list of values associated with the available choices.

Usage considerations

To use this function in your record type, see User filters for record types that use a web service.

Since users can save default selections for user filters, try to use expressions that rarely change the choices available. If users save a choice that is not available the next time they load the record, their saved filter selections will be cleared and a warning message will display.

Example

1
2
3
4
=a!recordFilterChoices(
  choiceLabels: {"Active", "Inactive"},
  choiceValues: {1, 0}
)

Feature compatibility

The table below lists this function's compatibility with various features in Appian.
Feature Compatibility Note
Portals Partially compatible

Can be used with Appian Portals if it is connected using an integration and web API.

Offline Mobile Partially compatible

Can be used with offline mobile if it is loaded at the top of the form.

Custom Record Field Expressions Incompatible
Process Reports Incompatible

You cannot use this function to configure a process report.

Process Events Incompatible

You cannot use this function to configure a process event node, such as a start event or timer event.

Open in Github Built: Fri, Feb 23, 2024 (09:12:49 PM)

a!recordFilterChoices() Function

FEEDBACK