Views:

Description

Finds a comma seperated list of values on an entity based on 1 input field.

Note that the recordcount parameter is optional (default is 50).

Find a list of account names that have an address1_city value of seattle.

Signature

FindListValues(
  'entitylogicalname', 
  'inputfieldname',
  'inputfieldvalue', 
  'outputfieldname',
  'recordcount'
)

Example 1

FindListValues('account', 'address1_city', 'seattle', 'name')
Returns 'Bungie, Expedia, Microsoft'

Example 2

Find a list of account names with no filters applied.

FindListValues('account', '*', '*', 'name') 
Returns 'Abbott, Acer, Apple'

Parameters

Name Type Description Required
entitylogicalname xxxx xxxx xxxx
inputfieldname xxxx xxxx xxxx
inputfieldvalue xxxx xxxx xxxx
outputfieldname xxxx xxxx xxxx
recordcount xxxx xxxx xxxx