Create and manage functions
Sample Deluge function
Let us create a simple function to calculate the number of days between two given dates. Specify the function name as CalculateDays. Add a new namespace and name it Calculations. Select Return Type as int. Specify arguments as sdate and edate of type ...
Pass form objects as arguments
A Form Object represents a collection of records. Zoho Creator supports passing of Form Objects as an argument to a user-defined Function. To pass Form Objects as arguments, select the required Form under Form Object and specify a name for it in the ...
Invoke function
Invoking a function or calling a function enables you to use the predefined set of statements in a particular situation in the application. A function can be invoked from various points in an application. To achieve this, you need to refer the ...
Assign value to form object arguments
Create a variable holding a single record or collection of records and pass the variable as a form object. fet = Employees_Form[Joining_Date== '31-JAN-2018']; thisapp.Send_Mail_Function(fet); (or) ...
Create and manage Java functions
A function is a set of statements that is invoked in an application to perform a certain action or yield a desired result based on the logic in the code. Java is a widely used programming language. Introducing Java will equip you to implement the ...
Create and manage node.js functions
A function is a set of statements that is invoked in an application to perform a certain action or yield a desired result based on the logic in the code. Node.js is a cross-platform, open-source JavaScript runtime environment. Introducing Node.js ...
Create new deluge function
To create a new deluge function: Click on Workflows to navigate to your Workflow Dashboard. Click Functions tab. Click NewFunction button. The create page will appear. Enter FunctionName. This serves as the identifier using which the function can be ...
Understand functions
A function is a set of deluge or java statements grouped together, which can be invoked within an application whenever required. Use functions to structure deluge scripts in a modular way. Related functions can be grouped under a common category, ...