See the supported connectors for Application Integration.

GREATER_THAN_EQUAL_TO function

GREATER_THAN_EQUAL_TO function

Function Name Description Usage Input parameter Return value
GREATER_THAN_EQUAL_TO Checks if an integer is greater than or equal to the specified value. GREATER_THAN_EQUAL_TO(value) Integer value to check. A boolean. Returns TRUE if an integer is greater than or equal to the specified value, and FALSE otherwise.

Supported data type

The GREATER_THAN_EQUAL_TO function supports the following data types:

  • Double
  • Integer

Example: Check if an integer is greater than or equal to the specified value

Sample data: $var1$ = 35

Usage: $var1$.GREATER_THAN_EQUAL_TO(15)

Check if var1 is greater than or equal to 15.

Output: TRUE

Recommendation