|
Options |
Name |
Purpose |
|
|
|
LOGICAL CanFind (handle, character, character, character, character, character)
|
Validates that a Business Entity record is accessible
|
|
|
|
LOGICAL CanFindByPrimaryKey (handle, character, character, character)
|
Validates that a Business Entity record is accessible based on the primary
unique key of the target table
|
|
|
|
LOGICAL CanFindByPrimaryKey (handle, character, character, character, character)
|
Validates that a Business Entity record is accessible based on the primary
unique key of the target table
|
|
|
|
LOGICAL EQ (handle, character, character, character)
|
Validates that a character field is equal to a value
|
|
|
|
LOGICAL EQ (handle, character, date, character)
|
Validates that a date field is is equal to a value
|
|
|
|
LOGICAL EQ (handle, character, datetime, character)
|
Validates that a datetime field is is equal to a value
|
|
|
|
LOGICAL EQ (handle, character, datetime-tz, character)
|
Validates that a datetime-tz field is is equal to a value
|
|
|
|
LOGICAL EQ (handle, character, decimal, character)
|
Validates that a numeric field is equal to a value
|
|
|
|
LOGICAL EQ (handle, character, integer, character)
|
Validates that a numeric field is equal to a value
|
|
|
|
LOGICAL GE (handle, character, character, character)
|
Validates that a character field is greater than or equal to a value
|
|
|
|
LOGICAL GE (handle, character, date, character)
|
Validates that a date field is greater than or equal to a value
|
|
|
|
LOGICAL GE (handle, character, datetime, character)
|
Validates that a datetime field is greater than or equal to a value
|
|
|
|
LOGICAL GE (handle, character, datetime-tz, character)
|
Validates that a datetime-tz field is greater than or equal to a value
|
|
|
|
LOGICAL GE (handle, character, decimal, character)
|
Validates that a numeric field is greater than or equal to a value
|
|
|
|
LOGICAL GE (handle, character, integer, character)
|
Validates that a numeric field is greater than or equal to a value
|
|
|
|
LOGICAL GT (handle, character, character, character)
|
Validates that a character field is greater than a value
|
|
|
|
LOGICAL GT (handle, character, date, character)
|
Validates that a date field is greater than a value
|
|
|
|
LOGICAL GT (handle, character, datetime, character)
|
Validates that a datetime field is greater than a value
|
|
|
|
LOGICAL GT (handle, character, datetime-tz, character)
|
Validates that a datetime-tz field is greater than a value
|
|
|
|
LOGICAL GT (handle, character, decimal, character)
|
Validates that a numeric field is greater than a value
|
|
|
|
LOGICAL GT (handle, character, integer, character)
|
Validates that a numeric field is greater than a value
|
|
|
|
LOGICAL IsEmpty (handle, character, character)
|
Validates that a character field is Empty
|
|
|
|
LOGICAL IsEnumMember (handle, character, Class, character)
|
Validates that a character field is the Character
representation of a valid Enum member
|
|
|
|
LOGICAL IsInList (handle, character, character, character)
|
Validates that a character field value is in a given list
|
|
|
|
LOGICAL IsInList (handle, character, character, character, character)
|
Validates that a character field value is in a given list
|
|
|
|
LOGICAL IsInRange (handle, character, decimal, decimal, character)
|
Validates that an decimal field is in a given range
|
|
|
|
LOGICAL IsInRange (handle, character, integer, integer, character)
|
Validates that an integer field is in a given range
|
|
|
|
LOGICAL IsMandatory (handle, character, character)
|
Validates that a field's value is provided ("mandatory"). The
field's value must not be unknown (?). In addition, for
CHARACTER and LONGCHAR fields an empty string is not allowed,
and for INTEGER, INT64 and DECIMAL fields zero is not allowed.
|
|
|
|
LOGICAL IsMandatoryWhenChanged (handle, character, character)
|
Validates that a field's value is provided ("mandatory") for
new records, or when the value has been changed on an
existing record. Use case: a field that is required for new
records, but on existing records the user must not clear an
existing value (set it to ?, empty string or zero).
|
|
|
|
LOGICAL IsNotNullOrEmpty (handle, character, character)
|
Validates that a character field is not Null or Empty
|
|
|
|
LOGICAL IsNotRestricted (handle, character, character, character)
|
Validates that the given data item is not restricted by the security
services
|
|
|
|
LOGICAL IsNotUnknown (handle, character, character)
|
Validates that a field's value is not ?
|
|
|
|
LOGICAL IsNotUnknownOrZero (handle, character, character)
|
Validates that a numeric field's value is not unknown value or zero
|
|
|
|
LOGICAL IsTokenNotRestricted (handle, character, character)
|
Validates that the user has authorization for the given security
token. This is not a field level validation. This is a row level
validation
|
|
|
|
LOGICAL IsUnknown (handle, character, character)
|
Validates that a field's value is ?
|
|
|
|
LOGICAL IsUnknownOrZero (handle, character, character)
|
Validates that a numeric field's value is unknown or zero
|
|
|
|
LOGICAL IsValidEmailAddress (handle, character, character)
|
Validates that a character field's value is a valid email address
|
|
|
|
LOGICAL IsValidEmailAddress (handle, character, logical, character)
|
Validates that a character field's value is a valid email address
|
|
|
|
LOGICAL IsWeekday (handle, character, character)
|
Validates that a date field's value is a weekday (Monday - Friday)
|
|
|
|
LOGICAL IsWeekday (handle, character, WeekDayEnum, character)
|
Validates that a date field's value is on the given day of the week
|
|
|
|
LOGICAL IsZero (handle, character, character)
|
Validates that a numeric field's value is zero
|
|
|
|
LOGICAL LE (handle, character, character, character)
|
Validates that a character field is less than or equal to a value
|
|
|
|
LOGICAL LE (handle, character, date, character)
|
Validates that a date field is less than or equal to a value
|
|
|
|
LOGICAL LE (handle, character, datetime, character)
|
Validates that a datetime field is less than or equal to a value
|
|
|
|
LOGICAL LE (handle, character, datetime-tz, character)
|
Validates that a datetime-tz field is less than or equal to a value
|
|
|
|
LOGICAL LE (handle, character, decimal, character)
|
Validates that a numeric field is less than or equal to a value
|
|
|
|
LOGICAL LE (handle, character, integer, character)
|
Validates that a numeric field is less than or equal to a value
|
|
|
|
LOGICAL LT (handle, character, character, character)
|
Validates that a character field is less than a value
|
|
|
|
LOGICAL LT (handle, character, date, character)
|
Validates that a date field is less than a value
|
|
|
|
LOGICAL LT (handle, character, datetime, character)
|
Validates that a datetime field is less than a value
|
|
|
|
LOGICAL LT (handle, character, datetime-tz, character)
|
Validates that a datetime-tz field is less than a value
|
|
|
|
LOGICAL LT (handle, character, decimal, character)
|
Validates that a numeric field is less than a value
|
|
|
|
LOGICAL LT (handle, character, integer, character)
|
Validates that a numeric field is less than a value
|
|
|
|
LOGICAL MaxLength (handle, character, integer, character)
|
Validates that a character field's value is not longer than the given
length
|
|
|
|
LOGICAL MinLength (handle, character, integer, character)
|
Validates that a character field's value is not shorter than the given
length
|
|
|
|
LOGICAL NE (handle, character, character, character)
|
Validates that a character field is not equal to a value
|
|
|
|
LOGICAL NE (handle, character, date, character)
|
Validates that a date field is is not equal to a value
|
|
|
|
LOGICAL NE (handle, character, datetime, character)
|
Validates that a datetime field is is not equal to a value
|
|
|
|
LOGICAL NE (handle, character, datetime-tz, character)
|
Validates that a datetime-tz field is is not equal to a value
|
|
|
|
LOGICAL NE (handle, character, decimal, character)
|
Validates that a numeric field is not equal to a value
|
|
|
|
LOGICAL NE (handle, character, integer, character)
|
Validates that a numeric field is not equal to a value
|
|
|
|
LOGICAL NonUpdatable (handle, character, character)
|
Validates that a field is not changed
|
|
|
|
LOGICAL NotCanFind (handle, character, character, character, character, character)
|
Validates that a Business Entity record is not available
|
|
|
|
LOGICAL NotCanFind2 (handle, character, character, character, character, character)
|
Validates that a Business Entity record is not available
|
|
|
|
LOGICAL ReadOnly (handle, character, character)
|
Validates that a field is not changed
|
|
|
|
LOGICAL ReadOnlyTable (handle, character)
|
Validates that a table is not changed
|