... information to your Zoho instance via API. No need for the Zoho Widget SDK.
Why?
At time of print, I felt the documentation was a little sparse on how to connect a JS widget to the data held in Zoho ...
... Superceded by including "send=true" in the invoice creation request
More Info: Error 1038: JSON is not well formed
- Encountered when trying to use the send an invoice API
- Was sending ...
...
How?
So I'll go over what happens in the real world process; then cover some technical information; and even include the function that makes it work:
Business Process
Customer visits website to ...
... else use the current value
var v_ProductWeightFormatted = fn_CountDecimals(v_ProductWeight) > 2 ? parseFloat(v_ProductWeight).toFixed(2) : v_ProductWeight;
// set the field value to the formatted ...
... in Zoho Analytics
Right-click on the "Image URL" column and select "Change Data Type" > select under Data Type: "URL"
Right-click on the "Image URL" column again and select "Format Column" > Select under ...
What?
This is an article to show you how to, using Deluge code, generate all the email signatures in the user profile in ZohoCRM.
Why?
To simplify the on-boarding process. A client of ours has ...
... v_Pages;
Additional
Urlencoding or not didn't have much affect on the above but it is recommended you do as it did work if the criteria were encoded...
The criteria is in the same syntax format ...
... :DELETE
connection:"zbooks"
];
Caveat(s)
The delete process may need to be in a schedule: you can use a custom module in ZohoBooks to store the necessary information of what to delete.
Undocumented ...
...
void fn_Joel_Test()
{
/***
- tried with getUrl() but this doesn't work.
- has to be an invokeUrl
- set param name required
- if file comes from a Creator form, no InvokeURL needed
c_Form ...
... I had this formula which seemed to do the same thing but unnecessarily moved the pointer to the start of the week. It could also error eventually if Zoho made it possible to change the start of the week ...
... key here to enable inventory tracking
m_CreateBooksItem.put("item_type","inventory");
//
// other less important values to include re purchase information
m_CreateBooksItem.put("product_type","goods");
m_CreateBooksItem.put("reorder_level",0);
m_CreateBooksItem.put("available_stock",v_QuantityAvailable.toLong());
m_CreateBooksItem.put("initial_stock",v_Quantity.toLong());
m_CreateBooksItem.put("initial_stock_rate",v_ItemPrice.toDecimal());
m_CreateBooksItem.put("inventory_account_id",m_Accounts.get("Inventor ...
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.