| $CONTEXT_RECORD_ID | $CONTEXT_RECORD_ID is used in UI-based rules engines—such as Data Loader, Data List, and Action Button—to dynamically reference the current record ID from the Lightning Record Page. When used in transformations, it is automatically replaced with the record’s ID at runtime. |
| $CURRENT_ORG_DOMAIN_URL | Returns current org's domain URL. |
| $EXECUTABLE_NAME | Returns the name of the currently running Executable. |
| $EXECUTABLE_ID | Returns the Id of the currently running Executable. |
| $JOINER | $Joiner is a prefix used to reference fields from a dataset that has been joined in the Scoping step of an Executable (left-join or cross-join). It allows downstream logic—such as Scope Filter (Post Join) rules and field mappings—to access the joined record’s fields. For example, $Joiner.Parent__r.Status__c references the Status__c field on the joined record’s Parent__r relationship. |
| $LAST_EXECUTION | References the most recent Execution record for the current Executable (any outcome), allowing formulas to read fields from that Execution. |
| $LAST_SUCCESSFUL_EXECUTION | References the most recent successful Execution record for the current Executable, allowing formulas to read fields from that Execution. |
| $SKIP_ASSIGNMENT | `$SKIP_ASSIGNMENT` is a special keyword used in DSP formulas to conditionally bypass processing based on dynamic logic. Field Mapping: If a formula evaluates to `$SKIP_ASSIGNMENT`, the target field is excluded from the request payload. Scope Filters: If a formula evaluates to `$SKIP_ASSIGNMENT`, the source record is omitted from processing.
This enables fine-grained control over field-level assignments and record-level processing. |
| $SOURCE_OBJECT_NAME | Returns the Resolved Input Object Name for the currently running Executable. |
| $SOURCE_ORG_ID | Returns the Organization Id of the source org for the currently running Executable. |
| $TARGET_OBJECT_NAME | Returns the Target Object Name for the currently running Executable. |
| $TARGET_ORG_ID | Returns the Organization Id of the target org for the currently running Executable. |
| $User.Email | Returns the email address of the running user. |
| $User.FirstName | Returns the first name of the running user. |
| $User.LastName | Returns the last name of the running user. |
| $User.Name | Returns the full name of the running user. |
| $User.ProfileId | Returns the Profile Id of the running user. |
| $User.Username | Returns the username of the running user. |
| $User.Id | Returns the Id of the running user. |