Options

Use of optional functions.

Symbol bound options

Filter:

The values can be filtered accordingly using the filter option. This may be necessary if only certain areas are to be displayed in a separate report.

Sample:

In connection with the "TcHmiAuditTrail.GetAuditTrail" symbol, all values from the AuditTrail database are displayed. If a value is to be displayed from a certain timestamp, the filter would look as follows.

"timestamp" >= "2025-04-17T10:45:34.4209685Z"

If this filter is to be extended by a specific value, it would look as follows.

"timestamp" >= "2025-04-17T10:45:34.4209685Z"&&"newValue" == "53"

Limit:

To limit the number of entries to a fixed value, a value can be entered here. The value 5 would mean that a maximum of five entries are transferred. Depending on the sort order and filter, the first entries are taken.

Sort by:

The entries in the symbol can be sorted using the sort function.

Sample:

In connection with the "TcHmiAuditTrail.GetAuditTrail" symbol, all values from the AuditTrail database are displayed. To sort the newValue in descending order, the configuration would look like this.

newValue DESC

If the sorting is to be extended by a value, such as the id in ascending order, this would look as follows.

newValue DESC, id ASC