... time format - DO NOT USE
v_CurrentTime = zoho.currenttime.toString("yyyy-MM-dd'T'HH:mm:ss", "Europe/London");
v_ExpiryTime = "2020-03-25T21:41:07+00:00";
v_ExpiryDatePart = v_ExpiryTime.subString(0,10);
v_ExpiryTimePart ...
... checking if daylight savings is in effect in the UK, we should be able to take Greenwich Mean Time and compare to UTC.
b_IsDSTInEffect = if(zoho.currenttime.toString("HH:mm", "UTC") != zoho.currenttime.toString("HH:mm", ...
What?
This is a not-so-quick article that queries an eBay order and creates the relevant ZohoInventory item, contact, sales order, package slip, shipment order, invoice, payment records...
Why? ...
What?
Following on from my article: ZohoCRM: Get All eBay Active Listings, this is how to get all the orders from a client's eBay.
Why?
Our use-case is a data migration from eBay to a fresh instance ...
What?
Another one of these articles talking about getting all the active product listings from eBay for a specific client.
Why?
Our use-case scenario here is that we want to get an inventory ...
... evaluate (specify here your dates [time set to midnight])
v_timeFrom = zoho.currenttime.subDay(0).toString("yyyy-MM-dd'T'00:00:00.000'Z'");
v_timeTill = zoho.currenttime.addDay(1).toString("yyyy-MM-dd'T'00:00:00.000'Z'");
//
// ...
... " + zoho.currenttime.toString("HH:mm:ss");
//
// loop through our list for this page
for each r_Candidate in l_Candidates
{
v_CountTotal = v_CountTotal + 1;
v_CandidateZohoID = ifnull(r_Candidate.get("CANDIDATEID"),0);
r_Associate ...
What?
This is an article documenting the process of publishing a Zoho Inventory image to eBay's Picture Hosting Services (EPS).
Why?
Because I couldn't find any other article in the whole world ...
... e Meeting");
//
// the start time
m_ScheduleMeeting.put("Start_DateTime",zoho.currenttime.addBusinessDay(1).toString("yyyy-MM-dd'T'HH:mm:ss","America/New_York"));
//
// the end time
m_ScheduleMeeting.put("End_DateTime",zoho.currenttime.addBusinessDay(1).addMinutes(30).toString("yyyy-MM-dd'T'HH:mm:ss","America/New_York"));
//
...
What?
This is an article documenting how to parse the notification from eBay and using it to create an order in Shopify.
Why?
Previously, we would receive an eBay notification and create an ...
... Deluge.
How?
We're going to make use of the .toLong() function applied to a datetime datatype variable which will return the Unix seconds.
// the now time
v_NowTime = zoho.currenttime;
//
// ...
... "Access Token Expires at: " + r_Api.Access_Token_Expiry;
v_Output = r_Api.Access_Token;
//
// zoho.currentttime can be server time as this function will check expiry against the server time anyway
if(zoho.currenttime ...
... like:
input.Audit_Change = "Title: " + input.Title;
Method #1: (do not use)
Previously I have tried adding a field called "DateTime form was loaded" which would have the currenttime when the form ...
We use cookies to improve your experience on our website. By browsing this website, you agree to our use of cookies. Read more about our Privacy Policy.