See the supported connectors for Application Integration.

LESS_THAN function

LESS_THAN function

Function Name Description Usage Input parameter Return value
LESS_THAN Checks if an existing number is less than the specified number. LESS_THAN(value) Number to check. A boolean. Returns TRUE if the existing number is less than the specified number, and FALSE otherwise.

Supported data type

The LESS_THAN function supports the following data types:

  • Double
  • Integer

Example: Check if an integer is less than the specified value

Sample data: $var1$ = 25

Usage: $var1$.LESS_THAN(27)

Check if var1 is less than 27.

Output: TRUE

Recommendation