Injected Expressions

Our expression language can be used within several text input fields to dynamically display values by using the injected expression syntax.

An injected expression is composed of a brace, an exclamation point, an expression, and closed by a brace.

Syntax

{!attribute_API_name__c}

{!attribute__c}

{!function(value)}

Where Available

  • Dynamic Filter
  • Rename Section
  • Form Field Label
  • External View URLs on Lists/Views
  • Embedded Section URL attribute
  • Business rules: Create Work Item
  • Business rules: Notification Subject
  • Business rules: Notification Body
  • Business rules: URL Call

Examples

Where Example(s)
Business rules: Notification Subject

Business rules: Notification Body

Dynamic Filter

The initiative named {!name} has reached {!Stage__c}.

Hi {!user.firstName},

{!addDays(Stage_2_date__c, estimated_effort__c)}

{!date(Year__c, Month__c,Day__c)}

External View URL on List/View

(Bubble Chart Example)

https://util.shibumi.com/customers/shibumi-rpa/bubble_chart.php?xMin={!Min_X_Axis_Value__c}&yMin={!Min_Y_Axis_Value__c}&xMax={!Max_X_Axis_Value__c}&yMax={!Max_Y_Axis_Value__c}&yRev=true
Embedded Section URL attribute

Business rules: URL Call

{!if(Business_Unit__c="East",URL1__c, URL2__c)}

https://www.yoursite.com/item?id={!encodeUrl(Item_ID__c)}

 

Updated on February 17, 2023

Related Articles