Global Variables

VariableDescription
$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.
$EXECUTABLE_NAME $EXECUTABLE_NAME returns the name of the currently running Executable.
$EXECUTABLE_ID $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 $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 $LAST_SUCCESSFUL_EXECUTION references the most recent successful Execution record for the current Executable, allowing formulas to read fields from that Execution.
$ORG_DOMAIN_URL Returns current org's domain URL.
$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.
$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.