a!dataSubset() Function
This function cannot be used with Custom Record Field Expressions.
For a full list of functions and their feature compatibility, explore the Appian Functions table.

Function

a!dataSubset( startIndex, batchSize, sort, totalCount, data, identifiers )

Creates a value of type DataSubset for defining the source of expression-backed records and for use with a!pickerFieldCustom, leaving the data as provided. To apply sorting and paging, use todatasubset().

See also: DataSubset

Parameters

Keyword Type Description

startIndex

Integer

The index of the first item to be returned in the subset.

batchSize

Integer

The number of items to be returned in the subset.

sort

SortInfo Array

Valid values include null, an empty array of SortInfo, or an array of SortInfo where <SortInfo>.field is the name of a field on the input array elements or "dot" notation for a nested field.

totalCount

Integer

The number of items in total.

data

Any Type Array

The data to be returned in the subset.

identifiers

Any Type Array

A parallel list of unique identifiers for each item in the subset.

Returns

DataSubset

Examples

You can copy and paste these examples into the Expression Rule Designer to see how this works.

1
2
3
4
5
6
7
8
9
10
11
	=a!dataSubset(
       startIndex: 1,
       batchSize: 4,
       sort: a!sortInfo(
         field: "name",
         ascending: true()
       ),
       totalCount: 10,
       data: {"a", "b", "c", "d"},
       identifiers: {1, 2, 3, 4}
    )

returns

/returns-datasubset

Open in Github Built: Fri, Jun 02, 2023 (06:00:52 PM)

On This Page

FEEDBACK