connect
Asking a question in Zoho Connect
To find answers to your questions, simply post them in your network. The answers get added as comments and you get to pick the best answer for your question. The selected answer appears on top of all the other answers. How to post a question? Click ...
Making an announcement in Zoho Connect
Overview Make sure your team does not miss any important update by posting them as announcements in the company or group wall. You can set a date till which the announcement will appear on top of all the other posts in the specific wall. Once an ...
Overview of walls in Zoho Connect
Network Wall The company wall or network wall is a great place to discover all relevant activities across the company in real-time. Keep everyone in your network posted on what's happening in the company by sharing updates on the network wall. All ...
How do I change my zoho.adminuserid?`
The Zoho Creator variable zoho.adminuserid is the email ID you'd used while signing up with Zoho. It is also called your Primary Email ID. To change your zoho.adminuserid/ Primary Email ID Visit https://accounts.zoho.com. Sign in using your Zoho ...
How can I change the width of the Columns displayed in the View fields?
By default,in the latest version of Creator UI, the width of the columns in the view is set depending upon the contents of columns being displayed in the view. If there are a few columns, the width of the columns is adjusted so that the view fits ...
How can I allow a user to delete only his own records?
Zoho Creator updates each record submission with the name of the login user who added the record and the time when it was added. Refer the Help topic Display User Name and Time, for more information. The following code added to the on delete -> ...
How can I allow a user to modify only his own records?
Zoho Creator updates each record submission with the name of the login user who added the record and the time when it was added. The following code added to the on edit -> validate block of the Script tab will be executed when a record is edited. If ...
How can I restrict property bookings based on arrival and departure dates?
In the following code, the Property_Bookings form restricts bookings based on the Arrival and Departure dates for a specific property. For instance, if a booking is made for property named C54 between 1st and 9th Jan, the form validation should check ...
How can I restrict travel bookings based on place and trip date?
In the following code, added to the on add -> validate block of the Script tab, the Booking_Form restricts entries based on the following conditions: Only four bookings allowed for a specific place on a day. If the number of bookings (with Place & ...
What is a record ID?
Record ID is a unique number generated by the Zoho Creator system for every record that has been added to the database. Usually it will be a 18 digit number ( eg:272719000003479011 ). This number can be displayed in Views. For this, Click on Edit ...
How to view the records that are added today?
If you want to restrict a View to display today's records, Click on Edit this application and select your View. Click on Set Criteria -> Restricted Records. Choose "Added Time" for the first drop down and "Today" for the second drop down. Click on ...
Can I lock a record that is being edited, and restrict more than one user from editing the same record at the same time?
Yes, with Deluge Scripting you can lock a record that is being edited as described in the steps given below: 1. Create a Form, for example, with name "LockedID" with a number field to store the ID number of the record being edited in 'Form X". ...
How to find and remove duplicate records in my Form
It is possible to find the duplicate entries in the database and delete them. Below is the example of removing duplicate email entries in your database. You can replace the Email field with the field name that you want to find for duplicate entries. ...
Is there a way to count the total number of checkboxes selected?
You can achieve it with the "size()" function to get the number of check boxes selected as, noOfOptionsSelected = input.CheckBox.size();
In my apps, only the admin can edit a record with the edit-record link. But the view and form are already shared with users. Any suggestions?
When a user does not have permission to "edit" records in a view, the form with the record will not be displayed when accessed using any of the available url formats. To provide Edit permission to a user, Select the View from the Views tab. ...
How do I print a record - The not so simple method
You can also invoke a custom function to open the record in a new page and subsequently print it. To do so, Please follow the steps mentioned below: Click on "Edit this application" and click on "Script" tab. Click on "Functions" displayed in the top ...
How can I fetch all the records in a Form that satisfy a given criteria?
The Count function in Deluge Scripting enables you to get the total number of records in a form satisfying a given criteria. Using the count function, you can check if an entry already exists in a database. Deluge Script Assume, you have two forms ...
How can I add a new record to another Zoho Creator application using the Deluge postURL task?
Refer the following topic : http://kbase.creator.zoho.com/adding-records/adding-records-to-a-zc-application-using-api
How do I set a custom filter to search for records where a certain field is not empty. For example, "Field does not contain [blank]"
If the field is of type "Text", you can set the Filter condition in the Free flow scripting of the View as given below and Save the script. Specify the required 'FilterName" and the "Fieldname". "FilterName" : (Fieldname not equal to "") If the field ...
Is it possible to create a view using the getWeekOfYear() function to display records belonging to that specific week?
The getWeekOfYear() function can be used to view records whose date field belongs to the current week. To do this, 1. Create a Formula field in your form with the following expression as given below, where Date_1 is the name of the date field in your ...
How can I create a view in Zoho Creator which shows only the current record?
To create a view which shows only the current record, Add a hidden field in your form to identify the current record based on some value. For instance, let us create a hidden field named TXT with default value as "new". When a new record is ...
Is it possible to create a view to display only those records added by the login user?
o restrict a user from viewing records entered by other users, a Criteria should be set for the view . When the following criteria is set for the view, only the records added by the user who is currently logged into Zoho Creator, is displayed in the ...
How do I filter views using both "AND" and "OR" operator?
An example of filtering views using both "AND" and "OR" operator is given below: The following Criteria specified in a list view named "Check View", fetches records whose Date_field is not empty AND Name field contains "a" OR Name field starts with ...
How do I Filter Views based on Date Criteria?
Show records that expires in the next seven days You can use the following criteria in your view to fetch records ending in the next 7 days, based on the Expiry date in the form. In the sample code given below, Expiry is the name of the date field in ...
How to Iterate Records in a Form
About the application The "Task Management" application illustrates the usage of for each record Deluge statement, to iterate records in a form. The applicationcomprises of the following forms: Staff Details: To store the staff details like name, ...
How can I fetch records from another application
The Fetch Records statement in Deluge Scripting currently supports fetching data from a form and updating it in another form, within the same application. Fetch and update of data from different applications can be achieved by using Functions. Refer ...
How can I fetch records within a given range
To fetch records from a Form within a given range, specify the start index and end index range in the Fetch records task, as shown in the sample code below. Here, the first five records that are sorted by Added_Time field will be fetched from ...
How can I fetch all the records in a form?
To fetch all the records in a form, specify the criteria as [ID != 0], where ID is a auto-generated field that contains a unique value for each record in the form. Example: rec = Contact [ID != 0] sort by Added_Time range from 1 to 5; where, rec it ...
How can I fetch a value (for example, the salary assigned to an employee) from a form and use it in calculation in another form?
About the application To fetch data from a form and use it in another form, a relationship has to be established between the two forms, using Lookup fields. The application named Collection Variable, demonstrates the usage of the Fetch Records task ...
How can I prepopulate one form with data that has been previously entered in another form, in same application?
To fetch data from a form and use it in another form, a relationship has to be established between the two forms, using Lookup fields. To create relationships between forms using Lookup fields, refer the topic Creating relationship. Let us ...
How can I iterate a collection of records?
The for each syntax in Deluge scripting, enables you to conditionally fetch a collection of records and iterate over them. Let us illustrate this with the help of a simple example. The CEO of a company wants to address all the new employees who have ...
How can I update records in a form using Deluge Script?
About the application You can fetch and update records from a form using Deluge script. Let us illustrate this with the help of an example. The application Library Manager has two forms: Books - To enter the details about each book with fields ...
If I delete a record in a form (table) that has "child" records in another form, the child records are not deleted. How can I delete the child records?
bout the application The application Deleting child nodes illustrates how to delete child records when a record is deleted from the parent form.The applicationcomprises of two forms: Client form to enter the client name (master form). Client ...
What are the different ways of deleting records from a Zoho Creator application?
You can remove old or unwanted records from your database by directly deleting them from the View or by executing Deluge Script or by using Zoho Creator APIs. Once a record is deleted, you cannot retrieve the data it contained. Who can delete ...
How can I add records to a ZC application using API
The application Add Record using API illustrates the usage of the Deluge postURL task to add a new record to another Zoho Creator application. Here we use the Zoho Creator XML RPC API to add a new record. The application comprises of a dummy form ...
What are the different ways of adding records in Zoho Creator?
Zoho Creator offers you the flexibility to add new records to your database, in multiple ways. You can add records directly through your ZC Forms, add records by sending an email to your ZC Form's email address, add records by importing data from ...
How do I print a single record?
While the entire view can be printed directly, there are two ways to print a single record. The simple way is to right click the "View" link, displayed next to the record and click on "Open Link in New Tab/Open Link in New Window". Once the record ...
How do I allow the users to whom I have shared a view, to edit a record in the view?
By default, the owner of the application [i.e you] has the ability to Add/Edit/Delete/Bulk Edit/Delete records in a view. To allow users toAdd/Edit/Delete/Bulk Edit/Delete the records: Click on "Edit this Application": and navigate to the appropriate ...
How can I get the Total of the values in a Column in the View?
If a form contains numerical fields like "Number/Percentage/Decimal/Currency" you can display the sum of the all the values entered for this field in the view. To display the sum: Click on "Edit this application" and navigate to the appropriate view. ...
Can I Back up My data/application?
Yes it is possible to backup your application with data. However this feature is available from the Standard Edition onwards only. You can back up your application design along with the data. To back up an application: Click on Account Settings link ...
Next page