Salesforce admins: Urgent action required!

Rules editor: Difference between revisions

Jump to navigation Jump to search
Line 359: Line 359:


{| class="wikitable"
{| class="wikitable"
| Integer || MyNumber1 || TimeDifference ||  Entity.createdon || Entity.modifiedon || minutes
| '''Variable'''| Integer || MyNumber1 || TimeDifference ||  Entity.createdon || Entity.modifiedon || minutes
|-
|-
| String || MyString1 || Concat || Email me at || Entity.emailaddress1
| '''Variable'''| String || MyString1 || Concat || Email me at || Entity.emailaddress1
|}
|}


Once the variable has been initialized, you can use it other steps and conditions.
Once the variable has been initialized, you can use it other steps and conditions.
{| class="wikitable"
{| class="wikitable"
| Entity.websiteurl || Assign || MyString2
| '''Step''' | Entity.websiteurl || Assign || MyString2
|}
 
=== Deleting variables ===
 
When you delete the variable, all steps that are using the variable on the left side will be also deleted.
 
Steps using the variable on the right side will reset and you have to define them again.
 
=== StringList type ===
 
StringList type is special type of variable that you can define. It represents a list of variables. In editing state you can’t initialized it right away, you have to add items in to the StringList using the AddItem step.
 
{| class="wikitable"
| '''Variable''' || StringList || MyStringList
|-
| '''Step''' || MyStringList || AddItem || Alpha
|-
| '''Step''' || MyStringList || AddItem || Beta
|-
| '''Step''' || MyStringList || AddItem || Gama
|}
|}


Navigation menu