Vahana Academy

List of vDesigner Functions

FUNCTION NAME FUNCTION NAME FUNCTION NAME FUNCTION NAME FUNCTION NAME AVG SUM PRODUCT DIVIDE POW FACTORIAL SORT ISNULLOREMPTY MAX MIN ISALPHANUMERIC DATEDIFFHOURS FLOOR CONCAT SUBSTR HEX CONTAINS UPPER LOWER ISALPHA CURRENTDATETIME CAST ROUNDUP ROUNDDOWN MOD LOG STATIC CEILING TRUNCATE FORMATNUMBERLOCALIZEDPATTERN ADDMINUTES ADDSECONDS HOUR MINUTES SUBHOURS SUBMINUTES SUBSECONDS WEEKDAY LEFT RIGHT ISNUMERIC TRIM MID CONTAINSALL LEN… Continue reading List of vDesigner Functions

Check Permission Function

The Check Permission function verifies whether a specific device permission (e.g., Camera, Location, Notifications) is granted. It returns a Boolean value (True if granted, False if denied), allowing applications to determine whether to proceed with an action or request permission. Common Use Cases When to Use Use the Check Permission function within the Open Device… Continue reading Check Permission Function

Functions Data Type

The vDesigner module provides several in-built data types to impart computational capabilities to the application designed in it. You can use these data types when you use vDesigner functions to implement application-related functionalities. You use vDesigner functions to create a business rule, configure a task, and in other activities. The vDesigner module provides the following… Continue reading Functions Data Type

Concat

The CONCAT function is used to combine (concatenate) two or more string values into a single string. It is commonly applied in scenarios where multiple text inputs or variable values need to be merged into a unified string output. Use Case On an application page, there are two input fields: When the user enters values… Continue reading Concat

Get Enum Object

Introduction The GETENUMOBJ function fetches the data from a mapped enumeration or enum type or object. After the GETENUMOBJ function fetches the data from the enum type, you can use it as follows: Apart from these functional scenarios, you can use the enum data in several functional requirements. For instance, you can collaboratively use the… Continue reading Get Enum Object

ISEMPTY

You can use the ISEMPTY function to check if an element, attribute, system variable, or other object type contains no value or is empty. If the ISEMPTY function finds that an element, attribute, system variable, or other object type is empty, it returns the true Boolean value. If the ISEMPTY function finds that an element,… Continue reading ISEMPTY

ISNUMERIC

This function checks characters in a string-type value. When you use the ISNUMERIC() function to check characters in a string, you can fetch the string from an attribute or element. If it finds that the string contains numeric characters, it returns the true Boolean value. If it finds that the string does not contain numeric characters, it returns the false Boolean… Continue reading ISNUMERIC

ISALPHANUMERIC

This function checks characters in a string-type value. When you use the ISALPHANUMERIC() function to check characters in a string, you can fetch the string from an attribute or element. If it finds that the string contains only alphanumeric characters, it returns the true Boolean value. If it finds that the string contains only alphabets or numeric… Continue reading ISALPHANUMERIC

IS ALPHA

This function checks characters in a string-type value. When you use the ISALPHA() function to check characters in a string, you can fetch the string from an attribute or element. If it finds that the string contains only alphabetic characters, it returns the true Boolean value. If it finds that the string contains alphanumeric or… Continue reading IS ALPHA