TEXT
TEXT: { value }
Description
The TEXT
operation creates a constant Text
(string) value. This operation allows you to embed static text directly within your logic.
Parameters
value
(string, required):- Specifies the text string you want to use as a constant.
- This value will be directly returned by the operation.
- The text value cannot be null or empty string.
Return Type
Examples
-
Using a simple text constant:
TEXT: "Enabled"
-
Using a text constant in a comparison:
IS_EQUAL:
left:
FIELD:
path: CA10__stateName__c
right:
TEXT: "running"