Views:

Description

When using the UpdateEntityNative function, this function allows you to set native field types.

Signature

UpdateEntityNative(
  'entity', 
  SetAttributeNative('fieldname','nativevalue'), 
  SetAttributeNative('fieldname','nativevalue')
)

Example 

UpdateEntityNative(
  GetVar('Lead'),
  SetAttributeNative(
    'jobtitle', 
    FindRecordsValueNative(GetVar('MatchedLeads'),'jobtitle')
  ),
  SetAttributeNative(
    'customerid',
    FindRecordsValueNative(GetVar('MatchedLeads'),'jobtitle')
  )
)