What?
A quick article to explain why the full name might appear in the last name field in Zoho CRM.
Why?
We had a customer report the issue that sometimes the full name of a contact was appearing ...
What?
An article on setting a date field to either the first Monday of the next month or to the last Tuesday of the current/next month. What I mean by the last Tuesday is if the last Tuesday of the ...
Why?
So let's say my FTP client is not the most expensive (was FREE), nor the most advanced client out there, and I want to know what were the most recent files I modified and uploaded to a site, how ...
Why?
I recently made a joomla module that displays the lastest members to signup. It goes a little further and counts activated accounts for the past day, week, month and year (the below examples count ...
... is a quick note (so I never spend as long again) in PHP on how to determine when looping through a loop, which entry was first and which was last. This is incredibly useful for pagination.
The Situation ...
... when records were last modified and if a synchronization process starts to fail, there should be images or icons warning or advising of failures.
How?
The key trick to use here the ability for Zoho ...
... send to. Here's some code to get the last 50 events:
//
// ***********************************
// get Zoho Projects information
v_BaseURL = "https://projectsapi.zoho.com";
v_Heading = "";
//
// ...
... */
//
// initialize
v_LastSyncTime = null;
v_LastSyncStatus = "?";
m_DataSourceInfo = Map();
//
// read the TLD (eu or com or com.in) from the URL when logged into Zoho Analytics
v_BaseURL = "https://analyticsapi.zoho.com";
//
// ...
... every day until an end date.
We then carry out the last bit of the brief with a separate workflow that runs exactly 4 days after the lead creation time and assigns it to the specified user (full name ...
... but the revised instructions here should also help. Then lastly, I'll post the snippet of code using in the widget to connect to Zoho based on a parameter passed in the URL that a Zoho Creator Page can ...
... returns both first and last)
var v_ContactName = ZDK.Page.getField('Last_Name').getValue();
// get the email of this contact
var v_ContactEmail = ZDK.Page.getField('Email').getValue();
...
... = ifnull(c_Document.File_field,"");
//
// used for blocking certain file extensions (not used in this function)
v_DocExtension = v_DocFileName.subString(v_DocFileName.lastIndexOf(".") ...
...
You should be in the "Organization Settings"
Click on any page in the left sidebar (eg. Plan Details), your Org ID is in the URL as the last number after the slash (eg. "20012345678")
Note this dow ...
... another folder called "Profile Photos".
Navigate into the "_Global" folder and note the last hash in the URL (after "/folders/")
For this function, I have a connection called "zworkdrive" which ...
... Further, you must encode the value.
Example:
Consider the search term:
((Last_Name:equals:Burns,B)and(First_Name:starts_with:M))
After escaping comma and parenthesis in the value:
((Last_Name:equals:Burns\,B)and(First_Name:starts_with:M))
After ...
... it when I ran into this error:
// initialize
m_QuoteRecord = Map();
//
// build quote request
m_QuoteRecord.put("Name.first_name",v_SellerName_Firstname);
m_QuoteRecord.put("Name.last_name",v_SellerName_Lastname);
m_QuoteRecord.put("Email",v_SellerEmail);
//
// ...
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.