What?
This is an open article without any completion in mind; to set the proper case of a name, as in capitalize the first letter, lower case the rest but then with exceptions.
Why?
Some of the ...
What?
Thought I'd put an article here to remind me how to make the retrieval of a record case-insensitive.
Why?
Consider that I have the following creator table:
Product_Name Product_SKU ...
What?
So this is an article exploring how to convert UPPERCASE text into mixed case. The feed is originally for a personnel feed so it won't be converting long paragraphs of English text. Instead it ...
... people on the net, I've been given a datasource with names and addresses all in UPPERCASE. Initially, no one seemed bothered but now the request came through asking if this could be restored to a normal ...
What?
This article is for demonstrating how to use a SOUNDEX in a select and then listing all the variations based on case-sensitivity.
Why?
We have a database with data in it. For a particular ...
What?
An article on adding an accept and decline button on the estimate (aka Quote) notification template within ZohoBooks.
Why?
The use-case is simply that my client wants to make it easier for ...
... on one to select it.
When are colors used? Well in this use-case, we are using it to color events in a calendar associated with specific staff. Probably not the most essential part of a system ...
... value
v_HexValue = v_HexGiven.replaceAll("#", "").toUpperCase();
//
// using a regular expression: split into pairs of characters or if short hex given, then split into 3 characters
l_HexParts = v_HexValue.replaceAll("(?)",",",false).toList().subList(1,4);
if(v_HexGiven.toString().len()>4)
{
l_HexParts ...
What?
A really quick article on a pretty cool requirement, making 2 fields mandatory but if one is completed then making the other optional.
Why?
My use-case is that the mobile or email field ...
... logged in user (who clicked the button)
v_LoggedInUserID = 0;
r_Users = zoho.crm.getRecords("users");
for each m_User in r_Users.get("users")
{
if(m_User.get("email").equalsIgnoreCase(zoho.loginuserid))
{
v_LoggedInUserI ...
What?
A very quick article on how to check what the statement execution limit is on the Zoho application you are working in.
Why?
Our use-case is that an application we built in Zoho Creator was ...
What?
This is an article to remind me how I did this for a customer and images help visualize the health of the system.
Why?
The use-case here is to build a system which monitors a Zoho App for ...
What?
A quick article because I couldn't find anything that documented this with a working example.
Why?
The use-case here is that we want to make a ZohoCreator page display events for this month ...
What?
A quick article to document 2 features in deluge code: a custom related list in ZohoBooks, and a reminder on how to read a table from ZohoAnalytics.
Why?
My use-case here is that we have ...
... by going through forum posts from 7 years to 2 years ago. The following will work in May 2024 following the API domain change.
The use-case is that the customer wants the item/product rate taken ...
... reminder to the lead record owner but to no avail. An assignment rule wouldn't work in this case as it had to be the lead owner (there is no owner at assignment rule stage). A workflow email notification ...
What?
There are already articles out there that document this but I use this more and more and would rather just find it on my site than going through multiple bookmarks.
Why?
This use-case is ...
... ) != null)
{
//
// my app is the only one using the orders/updated webhook topic/trigger
if(m_ThisWebhook.get("topic").equalsIgnoreCase("orders/updated"))
{
b_RestoreOrderUpdateWebho ...
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.