Let’s take a look at the format difference between Zoho Deluge (zoho.currentime) and Zoho date-time fields.
For the update to work, you would first need to convert zoho.currenttime into the Zoho date-time field format. Conversely, if you “GET” date-time fields on Zoho, you would not be able to perform any calculations in Deluge before converting the date-time field into the zoho.currentime format. All these can be done via string manipulations.
Now that you’ve understood Zoho’s date-time field format, let’s begin converting!
First things first, time zone. The time zone format here is based on GMT. As for us in Utah, it would be GMT-7, therefore [-07:00]. To check your company system time zone in CRM, you can go to Setup > General > Company Details.
timeZone = "-07:00"; //Change to your system time zone.
time = zoho.currenttime;
justDate = time.getPrefix(" ").toString("yyyy-MM-dd");
justTime = time.getSuffix(" ");
Now that you have the date, time and time zone variables ready, merge them all together in the required format (with the “T”), and remove the additional space with the remove function. Your date-time is now ready to be updated into any date-time fields in Zoho.
timeReformat = (justDate + "T" + justTime + timeZone).remove(" ");
info timeReformat;
When you GET a Zoho date-time field, you will be returned with the Zoho date-time format. If you need to perform calculations on Deluge, you need to reverse convert it into Deluge’s date time format (which is basically the reverse of what we just did). This can be done by simply replacing the “T” with a space ” “.
time = "GET_ZOHO_DATE_TIME_FIELD_HERE";
timeReformat = zohoDateTime.replaceAll("T"," ");
Even without trimming out the time zone, the date-time is now in a Deluge-parsable format allowing you to perform any date-time additions/subtractions.
To update the date-time into a Zoho date-time field, you would need to format it back by repeating the steps above.
This post is for date-time format conversion only. For time zone conversion, please refer to Zoho’s documentation on toTime function.
Click here to copy these scripts. For more Zoho-wizardry, check out our GitHub page.
Did you find this tasty? We dish out more free Zoho training here!
Book a free 30-minutes consultation with a Zoho expert or send us an email