... record to an opportunity (or Deal) record. If you are using custom fields, then just ensure that the data type and field lengths match. In this case, they are system fields for the Postal Code which ...
... var fn_CountDecimals = function(value) {
if (Math.floor(value) !== value)
return value.toString().split(".")[1].length || 0;
return 0;
}
// get the value from ...
... = List();
for each m_User in r_Users.get("users")
{
v_CurrentSignature = ifnull(m_User.get("signature"),"");
//
// criteria, only update signatures which aren't done?
//if(v_CurrentSignature.length( ...
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 ...
What?
An article on how I can query all the orders for yesterday without using the eBay GUI Selling website. I've included the code to parse out the information as well.
Why?
Because I need this ...
... at 1/10th the cost of text-davinci-003)
gpt-4
gpt-4-32k (up to 4x the context length)
Source(s):
OpenAI - Documentation - API Reference - Making Requests
OpenAI Account - API keys
OpenAI ...
... we don't want based on criteria
l_NewSubformRows = new Array();
for (i = 0; i < l_existingSubformRows.length; i++) {
// check row hasn't already been entered, here we are using the start ...
What?
This is an article on a trick I picked up from one of our interviewees as well as apparently in one of the Zoho documentation manuals. It uses leftpad to create a string of a length, converts ...
What?
This is the function to get the line item order/transaction from eBay if you give it the eBay Item ID as a parameter.
Why?
Mostly for debugging but here's the code that will quickly get ...
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 ...
What?
This is an article to document a function used in Zoho Creator to retrieve the Product IDs of all the active products in a client's eBay store.
Why?
The use-case was that I wanted to retrieve ...
... have added a WHERE clause which omits words less than 5 characters in length, and some other words not to count.
I have added the ORDER BY to give me the highest count first in descending order.
I ...
...
So going through the forums you may find the following example:
string padWithLeadingZeros(int finalStringLength, int startingNumber)
{
return leftpad(toString(input.startingNumber), input.finalStringLength).replaceAll(" ...
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.