Annoying Pop-Up Zoho Advertisements and Announcements Within Apps
It is beyond frustrating to have to close out Zoho's announcements for Webinars, Zoholics, updates, events, etc while working within ANY of the Zoho apps. I see it when accessing Zoho One, Cliq, Creator, and CRM. Zoho boasts to be a professional solution
Button to attach Mail Merge PDF into deal Attachments as
Hello I am trying to create a button inside Zoho One Deals that will take a per made Mail Merge template and attach that template as a PDF in the attachment of that deal. This is the deluge script I got from Chat GPT and it does not work does anyone know
Integrating Deluge in zoho people to setup a custom function in workflow automation
So basically i have a probation form in which their is a field "Date of Confirmation", "Probation Assesment", "Date of Joining", "Employee ID". so when Date of joining will not be empty then i want this to be triggered. so if "Probation Assesment" is
Get Time
I have a date/time field in CRM. I'm trying to use deluge to extract just the Date, just the Time, and just the AM/PM designation. I cannot for the life of me get this to work... I've looked through all the deluge documentation but nothing seems to work...
Extract first and last name
I am trying to build a custom function in Flow, when a new Zoho Booking is added I want to split the Name field into first last name. I understand the function needs to be a string and this works but I am unsure how to write this in the flow script. result
Help with Zoho Books Deluge code error
I have this deluge code im writing for Zoho Books button, it throws an error: Check and update the code in line 12 as there is a Exception : Error at line :14 Improper Statement Error might be due to missing ';' at end of the line or incomplete expression
Why is my deluge code not executing properly? (New and learning deluge)
I'm trying to update a sales order number through deluge for an automation I'm trying to build. What is wrong with it? /* replacing SO with SOR for sales order pre-fix */ SO = salesorder.get("salesorder_number"); replace = SO.replaceFirst("SO","SOR");
Creator Page Param to feed A button link on page?
Hey everyone. I have a quick question. Is it possible to add params to your creator page link and then take those params to create a dynamic link for a Button inside the page? Thanks!
Levenshtein Distance in Zoho Deluge (Because Why Not?)
Ever wanted to run a Levenshtein Distance algorithm inside Zoho Deluge? No? Me neither, but I did it anyway. I built a fully functional fuzzy matching system inside Zoho, brute-forcing a dynamic programming solution using Maps and recursive list generation.
Breaklines In Deluge/OpenAI
I've created a model in OpenAI to take a transcript, summarize it in bullet points, and e-mail it. I'm able to format the e-mail intro and ending (the text I can control in Deluge), but I'm not able to format what gets sent and returned to OpenAI- the
Export report to csv via deluge script
Hi, is it possible to export a report into a CSV file from a deluge function? If so is there a limit to the number of records that can be exported? In my system I need to create a CSV file (actually I'd need an XLS file but I think XLS file has a narrower
Attach Subform images from Zoho Creator to CRM Module
Good afternoon eveyone. I am having a difficult time trying to find a way to attach a subform image from a creator app to a CRM module. I have tried so many ways that I don't even know which way was on the right track because none of them worked. If anyone
Clear specific tag or tags from all leads
I'm looking for a way to clear a specific tag from all Leads. I have a function when a tag is added to a lead they are added to a campaign and their status is set to "invited". I need to find a method to remove the tag. If I try to delete the tag to clear
Upload An Attachment in Zoho Projects Task - API
Hello Team I am trying to upload an Attachment in Zoho Projects Task by the API but this is not working can you please check the code that I am missing in this? Sample Code PortalID = "725833080"; ProjectID = "1688514000000448005"; TaskID = "1688514000000558005";
Pagination help
Hello everyone. I have this code below that gets all accounts based on specific criteria. I just discovered that it's not pulling in all of the accounts due to the 200 item limit. I've been trying to follow some pagination examples but can't seem to figure
Zoho Deluge Online Training - 2025
Hello developers, In continuation of the previous Get to Know Deluge Series, the Zoho Deluge team is conducting the Zoho Deluge Online Training. Learn more about the training by reading the details below. What is the Zoho Deluge Online Training? The Zoho
Why is this an Invalid Collection String Error?
Here's the code snippet: Enddate = EventEnd.toDate("yyyy-MM-dd"); EventCollection = Collection(); EventCollection = zoho.crm.searchRecords("Events", "(End_DateTime:starts_with:"+Enddate+")"); for each eventday in EventCollection { //create a list of events
Access Sales Order line Items in Deluge
Does anyone have a Deluge snippet that shows how to access an Order_Items from a Sales_Order? Thanks in advance! Brenedn
Remove Special Characters "\" using Zoho Deluge
Who needs this? I don't know! I did, and I sure did not find any helpful information out there, not with this keyword though. So, if you find this article because you searched the same thing as I do, then hey, you're in luck! And do note that I am not
Delay Function
Hello, I would like to emphasize the importance of incorporating a delay functionality within custom functions, particularly in the context of integrating multiple platforms. As I understand, a delay function is not available by default in Zoho. However,
Adding Attachment to Desk Ticket via Deluge
Hello, My team has a process where some people are entering information into a workbook in Zoho Sheet, and we need to get a copy of workbook into a ticket in Desk. We currently have a 'Submit' button on the Sheet that triggers a webhook to Flow, and from
Marking a Desk ticket as Unread after merge
We have a custom script that runs against every new ticket and auto-merges it with any existing ticket that matches our criteria. That works fine but there is no functionality that reverts the newly-updated ticket back to an "unread" state. I found the
Simple Deluge Script
Hi. I'm brand new to functions but I'm trying to create a script to convert a date field in Meetings to a written format. For example, instead of 02/05/2025 8:00AM, I'd like to convert it to Wednesday, February 5, 8:00 AM. My Date field is the API Name
Calling a function within another function
Hello there, I have just found out that you can simply call up functions in other functions, regardless of the department. You can't create functions with the same name twice, even though you are in a different department. If you try it, you don't get
Zoho CRM function invoked by REST API Key does not receive a POSTed payload from Zoho Sign's webhook feature
Posting a payload to the URL of the API Key invokes my function, but I can't access the POSTed payload data inside my function. I have confirmed that a payload is being POSTed correctly by testing with my own hosted webhook. I have tried receiving the
InvokeURL request does not return entire date range
In a certain function, invokeURL is called to return all scheduled meetings in the current month. However it only returns meetings up to zoho.currenttime. I've verified "start" and "monthend' variables return the expected values using our January data.
How can I add an element to a specific array position in a list of arrays?
I have a list of event records that I am de-duplicating. Each record contains a title, a date, and an alphanumeric ID (needed for an external function). I wish to deduplicate records based on the combo of Title and Date only, because the ID will always
Attach image from Creator Subform to Deal
Can anyone help me figure out how to attach an image from a creator subform to a Deal? I have read through all of the documentation and can't find anything for my specific scenario. Everything I have found is attached from the Creator form (not subform)
Get Creator Form Record ID and Subform ID's
Good Afternoon everyone. I have a Creator form with a on success workflow. I'm trying to get the form record ID and the subform record ID(s) but they keep coming up null. There is data in the subform I use it elsewhere. Can anyone help me pull the ID's.
Zoho Projects Currency fields in Deluge script
I have several functions I've written in Zoho Projects that take one or more currency fields as input parameters (arguments). These functions have been working just fine for months, and I made no changes to any of them. Today (Jan 21, 2025) I noticed
API Casing needs consistency in names
The JSON for an account record looks like this: {"Name": "Name of the Account", "id": "id of the account", "Address": "address of the account" "Owner":{ "name": "Name of Owner", "id": "id of owner", } } It makes no sense that "name" is capitalized in
Function Needed: Update Account or Contact Profile Image
Hey there! Zoho doesn't have the ability to automatically populate company logo or contact images once a domain/email is added to a record. This can be done via Clearbit's Logo API: https://clearbit.com/logo I would like to create a deluge script that
Deluge Script - "Mismatch of data type expression" Error When Retrieving Account ID
Hi everyone, I'm working on a Deluge Script in Zoho Creator to create Accounts and Locations. I'm running into a "Mismatch of data type expression" error when trying to retrieve the ID of a newly created Account. Here's the relevant part of my code: accountResponse
Function Only Working Manually
Good evening everyone. I have a function that creates a PDF from a Creator form. When I execute it manually it works perfectly. But when I execute it from within a On success workflow it is not working. I'll post my code below. Any ideas? //Function void
Function for SUM of two currency fields in Deals to be populated in third currency field
In the Deals module I want to use a function to SUM the CAAS_Subscription currency field and the MDO_Subscription currency field and populate the total in the Total_Subscription_Revenue field
Iteration through a list - Coming up against a "Failure to update function" error
Hi there! I've been attempting to get a deluge script working and am running into an error that I have been unable to resolve. The error I am getting is Failed to update function Error at line :18. Improper Statement. Error might be due to missing ';'
Can you modify "Last Activity Time" in deluge? If so what's the field name?
I need to perform some bulk modifications on records in the Leads module, but I need to avoid changing the "last activity time" or "date modified" because I am using those fields to filter and sort leads for follow-up action. I cannot find an answer anywhere
Send Zoho Creator Template by Email or sendemail
Hello All Question:- How we can send the Zoho creator email template using the send email by the workflow or using the Function? by the Workflow sendmail [ from: zoho.adminuserid to: "zohodeveloper@yopmail.com" subject: "Test Template" message: "Test
Functions - How to pass Dynamic Parameters / Arguments?
I am trying to create a generic function that I can use to update a given field with the name of the user and a given field with a datetime. The purpose of this is to have a history of major actions within the CRM record itself so it is easier to query
Clear String field based on the value of other field
Hello everyone, We would like to be able to clear a string field (delete whatever has been written and make it empty) when another field (picklist) is changed to a specific value. While I can empty other types of fields, I noticed that I can't do this
Next Page