Hi there,
we've set up a workflow to create a Call (Related Record) whenever a new Lead (Target Entity) is created (see screenshot attached).
The new call should have a short description, including the Lead's phone number. To achieve that, we used the following formula for the new related record:
Using phone_number.name was a best guess that didn't work.
Any suggestions?
we've set up a workflow to create a Call (Related Record) whenever a new Lead (Target Entity) is created (see screenshot attached).
The new call should have a short description, including the Lead's phone number. To achieve that, we used the following formula for the new related record:
Code:
short_description=string\concatenate(targetEntity\attribute('first_name'), " ", targetEntity\attribute('last_name'), " - phone number: ", targetEntity\attribute('phone_number.name'));
Any suggestions?
Comment