Views:

Description

Returns an Entity from an EntityCollection.

Signature

FindECRecord('entitycollection', 'index')

Example

FindECRecord(GetVar('MatchedLead'), 0)

 

Parameters

Name Type Description Required
inputstring xxxx xxxx xxxx
stringtobereplaced xxxx xxxx xxxx
replacementstring xxxx xxxx xxxx

 

 

Comments (1)
  • To access values from this entity, combine it with calls to FindRecordValue, e.g:
    /* Get value of Subject attribute from first Lead record in entity collection called 'MatchedLead' */
    SetVar('varLeadSubject',
      FindRecordValue(
          FindECRecord(GetVar('MatchedLead'), 0)
          ,'subject'
          ,'* No subject was set *'
      )
    )