What?
An example of code using the new API call "Module Record Count" with some criteria.
Why?
At time of print, I couldn't find an example of how to use this API call with search filters or criteria. ...
... to the same school and updates some number fields on the matched CRM account.
Why?
For reporting purposes. Although Zoho Analytics can use data imported from both ZohoCRM and ZohoRecruit, it was ...
What?
This is an article to document how to output the most frequently used words in a MySQL database column.
How?
Note this only applies to MySQL.
So the following query will return a count ...
What?
A quick article on how to count within a map. I didn't have too much difficulty getting this to work and I'm not sure if there are better ways of counting so I'm documenting it to see if I can refine ...
What?
A quick article just as a note to get the users country information from a third-party API based on the given IP address.
How?
Well this is just a list of free 3rd-party APIs and the below ...
What?
This is an article explaining the code needed to write a PHP script which generates an access token for a service account which in turn is used to list files in a team's Google Drive.
This is ...
... statement.
Why?
The MySQL statement SELECT COUNT(DISTINCT name) FROM table is valid but I get what you mean and it's sometimes difficult to explain why you want to use it.
How?
Method #1: Add ...
Applies to:
Microsoft Windows 7 Enterprise
AutoHotkey (see code for AHK version)
What?
Someone suggested an app that counts the days I have left serving my notice. I thought I'd go one better ...
... allocated country. Our use here was to create a refreshable country by IP address list that we can use when parsing our website logs to check where visitors were from.
Note: we also use and love ...
What?
We have a datawarehouse and we want to be able to count all the records in any table of the database that match on a particular warehouse load. This is a column value where the column is called ...
... columns.
How?
IF OBJECT_ID('usp_ListDistinctValuesAndCounts', 'P') IS NOT NULL
DROP PROCEDURE [usp_ListDistinctValuesAndCounts];
GO
CREATE PROCEDURE [usp_ListDistinctValuesAndCounts]
(
...
I added this article because when I was only trying to look up how to do this, this nut "the Storyteller" went and carried out a benchmark test on the most popular ways of counting the occurrence ...
... apply changes to any of the line items
l_NewLineItems = List();
if(!isNull(m_RecordData.get("id")))
{
for each m_LineItem in m_RecordData.get("Quoted_Items")
{
m_NewLineItem = Map();
m_NewLineItem.put("id",m_LineItem.get("id"));
m_NewLineItem.put("Description",m_LineItem.get("Description"));
m_NewLineItem.put("Discount",m_LineItem.get("Discount"));
m_NewLineItem.put("CUSTOM_FIELD_1",m_LineItem.get("CUSTOM_FIELD_1"));
m_NewLineItem.put("CUSTOM_FIELD_2",m_LineItem.get("CUSTOM_FIELD_2"));
m_NewLineItem.put("Product_Name",m_LineItem.get("Product_Name"));
m_NewLineItem.put("Quantity",m_LineItem.get("Quantity"));
m_NewLineItem.put("List_Price",m_LineItem.get("List_Price"));
l_NewLineItems.add(m_NewLineItem);
}
}
}
//
// ...
... Upload
Error(s) Encountered:
When updating members to a workdrive, I was getting errors such as
2945 Invalid JSON
2945 Invalid JSON
for each v_RecipientEmail in l_WorkdriveRecipients
...
... v_Iteration;
}
// yields an incremental count from 0 to 4999
Statement Execution Limit is 10000
If the below runs successfully, then the limit is at least 10'000:
//
v_Counter = 0;
l_Loop ...
...
'https://analytics.zoho.eu/clientapi/imageLibrary/fetchImage?ZDBFILEID=12345000034567890&ZSOID=20240725001'
)
) AS "Status"
FROM "Accounts"
ORDER BY "Modified Time" DESC
/****
Pseudo:
Select
Modified ...
... = v_Message + "No Datasource Information! Either the data source synchronization has been switched off or there is an error with a connection account between Zoho People and Zoho Analytics. ";
}
v_Message ...
What?
A quick article on how to get the pricebook entry using Zoho Deluge for a specific product in your ZohoBooks or ZohoInventory instance.
Why?
This took me the best part of an hour to determine ...
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.