Build a filter function to ceil a number. Evaluates to double or decimal, defaults to double.
Internal
Build a filter function to ceil a number. Evaluates to double or decimal, defaults to double.
The number to ceil. This can either be a number, a reference to a field or another filter function.
Optional
returnType: "double" | "decimal"The return type to use.
The newly created filter function
Build a filter function to concatenate two strings. Evaluates to string.
Internal
Build a filter function to concatenate two strings. Evaluates to string.
The first string to concatenate. This can either be a string, a reference to a field or another filter function.
The second string to concatenate. This can either be a string, a reference to a field or another filter function.
The newly created filter function
Build a filter function to get the day of a date. Evaluates to int.
Internal
Build a filter function to get the day of a date. Evaluates to int.
The newly created filter function
Build a filter function to test whether a string ends with another. Evaluates to boolean.
Internal
Build a filter function to test whether a string ends with another. Evaluates to boolean.
The string to test. This can either be a string, a reference to a field or another filter function.
The suffix to test for. This can either be a string, a reference to a field or another filter function.
The newly created filter function
Build a filter function to floor a number. Evaluates to double or decimal, defaults to double.
Internal
Build a filter function to floor a number. Evaluates to double or decimal, defaults to double.
The number to floor. This can either be a number, a reference to a field or another filter function.
Optional
returnType: "double" | "decimal"The return type to use.
The newly created filter function
Build a filter function to get the hour of a date. Evaluates to int.
Internal
Build a filter function to get the hour of a date. Evaluates to int.
The newly created filter function
Build a filter function to get the start index of a substring. Evaluates to int.
Internal
Build a filter function to get the start index of a substring. Evaluates to int.
The string to get the index from. This can either be a string, a reference to a field or another filter function.
The substring to get the index for. This can either be a string, a reference to a field or another filter function.
The newly created filter function
Build a filter function to test whether a selection or a field is of a given type. Evaluates to boolean.
Internal
Build a filter function to test whether a selection is of a given type. Evaluates to boolean.
The type to test for, e.g. API_BUSINESS_PARTNER.A_BusinessPartner
.
The newly created filter function
Internal
Build a filter function to test whether a field is of a given type. Evaluates to boolean.
The newly created filter function
Build a filter function to get the length of a string. Evaluates to int.
Internal
Build a filter function to get the length of a string. Evaluates to int.
The string to compute the length for. This can either be a string, a reference to a field or another filter function.
The newly created filter function
Build a filter function to get the minute of a date. Evaluates to int.
Internal
Build a filter function to get the minute of a date. Evaluates to int.
The newly created filter function
Build a filter function to get the month of a date. Evaluates to int.
Internal
Build a filter function to get the month of a date. Evaluates to int.
The newly created filter function
Build a filter function to round a number. Evaluates to double or decimal, defaults to double.
Internal
Build a filter function to round a number. Evaluates to double or decimal, defaults to double.
The number to round. This can either be a number, a reference to a field or another filter function.
Optional
returnType: "double" | "decimal"The return type to use.
The newly created filter function
Build a filter function to get the second of a date. Evaluates to int.
Internal
Build a filter function to get the second of a date. Evaluates to int.
The newly created filter function
Build a filter function to test whether a string starts with another. Evaluates to boolean.
Internal
Build a filter function to test whether a string starts with another. Evaluates to boolean.
The string to test. This can either be a string, a reference to a field or another filter function.
The prefix to test for. This can either be a string, a reference to a field or another filter function.
The newly created filter function
Build a filter function to get a substring starting from a designated position. Evaluates to string.
Internal
Build a filter function to get a substring starting from a designated position. Evaluates to string.
The string to get a substring from. This can either be a string, a reference to a field or another filter function.
The starting position of the substring. This can be either a number, a reference to a field or another filter function.
Optional
len: number | Field<EntityT, boolean, boolean> | NumberFilterFunction<EntityT>The length of the substring. This can be either a number, a reference to a field or another filter function.
The newly created filter function
Build a filter function to transform a string to lower case. Evaluates to string.
Internal
Build a filter function to transform a string to lower case. Evaluates to string.
The string to transform. This can either be a string, a reference to a field or another filter function.
The newly created filter function
Build a filter function to transform a string to upper case. Evaluates to string.
Internal
Build a filter function to transform a string to upper case. Evaluates to string.
The string to transform. This can either be a string, a reference to a field or another filter function.
The newly created filter function
Build a filter function to trim whitespace from a string. Evaluates to string.
Internal
Build a filter function to trim whitespace from a string. Evaluates to string.
The string to trim whitespace from. This can either be a string, a reference to a field or another filter function.
The newly created filter function
Build a filter function to get the year of a date. Evaluates to int.
Internal
Build a filter function to get the year of a date. Evaluates to int.
The newly created filter function
Copyright Ⓒ 2024 SAP SE or an SAP affiliate company. All rights reserved.
Interface containing all filter functions like
startsWith
,toUpper
orfloor
.