Function | Description |
---|---|
Maximum Length | Validates whether the length of a string is less than or equal to the specified length. |
Minimum Length | Validates whether the length of a string is greater than or equal to the specified length. |
Starts With | Validates whether a string starts with the specified string. |
Ends With | Validates whether a string ends with the specified string. |
No Spaces | Validates whether a string does not contain spaces. |
Contains | Validates whether a value contains the specified string in the exact order. |
Does Not Contain | Validates whether a value does not contain the specified string in the exact order. |
Allowed Characters | Validates whether a value contains the specified allowed characters. |
Not Allowed Characters | Validates whether a value contains the specified characters that are not allowed. |
Regular Match | Validates whether a string matches the specified regular expression pattern. Business 360 Console follows the ECMA-262 standard for regular expression. |
External Validation | Validates the field data based on an external validation rule that is associated to a Cloud Application Integration process. The Cloud Application Integration process uses external APIs to validate the data. Basic rule associations with external validation functions validate the field values of records that you create or update in real time through the user interface and REST API. For more information about creating a process, see Cloud Application Integration. |
Date Range | Validates whether a date is in between two specified dates. |
Greater Than Date | Validates whether a date is greater than the specified date. |
Lesser Than Date | Validates whether a date is less than the specified date. |
No Future Date | Validates whether a date is not a future date. |
Maximum Decimal Scale | Validates whether the number of decimal places is less than or equal to the specified value. |
Minimum Value | Validates whether a numerical value is greater than or equal to the specified value. |
Maximum Value | Validates whether a numerical value is less than or equal to the specified value. |
Maximum Precision | Validates whether the total number of digits in a decimal number is less than or equal to the specified value. |
Function | Description |
---|---|
Concatenate | Concatenates two or more strings. |
Concatenate With Spaces | Concatenates two or more strings with spaces in between. |
Uppercase | Converts lowercase string characters to uppercase. |
Lowercase | Converts uppercase string characters to lowercase. |
Title Case | Capitalizes the first character in each word of a string and converts all other characters to lowercase. |
Left Trim | Removes spaces from the beginning of a string. |
Right Trim | Removes spaces at the end of a string. |
Replace | Replaces a character set in a string with another character set. |