Skip to main content

Find All Records in Multi-Value Custom Suggest Fields

AutomationA few releases ago, it became possible to use the UI extension functionality to add custom suggest fields in which multiple values can be selected.  The automation rules now provide the ability to not only retrieve the IDs of all records selected in such custom fields, but also to convert these IDs to actual records so they can be used in automated actions.  This can be done using the following expression:

  • find_all(record_type, custom_multi_suggest_field_expression)

For example, let’s take a request that has a UI extension with a suggest field in which multiple people are selected.

Request with approvers in multi value custom suggest field

An automation rule can now be used to look up the people selected in the request.  The automation rule can then relate these people to an approval task of the change that is linked to the request.  And the automation rule can also update the number of required approvals in this task to make sure they all need to provide their approval, after which the rule can cause the approval task’s status to be updated to ‘Assigned’.

Automation rule that retrieves multiple values from a suggest field

When the automation rule has done its job, the approvers will see the updates in the approval task when they open it.

Approval task with approvers set by automation rule

Note that the following expression was already available for retrieving the record from a custom field in which only a single record can be selected:

  • find(record_type, custom_suggest_field_expression)