What?
A quick article to document a Zoho Deluge function converting a hexadecimal color reference to a Red Green Blue value (RGB).
Why?
It's likely that Zoho will avail their color picker at some ...
... ZohoCRM > Setup > Functions > and hover the mouse over the function you just created above (eg. Fn - ZohoSign - Document Completed)
Hover the mouse over the ellipsis that appears and select "REST API ...
... img5 ON t5."Status" = img5."Status Value"
Repeating the above for a few more widgets (or cloning the first widget and then changing the filter and heading label), I now have a dashboard that has the follow ...
...
The above is great on a test system where you don't have many events, but what if this the system has far more than 50 events, past or upcoming? Here's the code to get a single event record by its record ...
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 ...
... e = zoho.crm.invokeConnector("crm.delete", m_Delete);
info r_Delete;
}
}
}
Caveat(s)
I've set it to only remind on business days excluding Saturdays and Sundays but you could modify the abo ...
... (Display amount and then percentage beneath in smaller)
Line Item Totals have been added to the above code retrospectively without proper testing.
Aggregate of total amount may be unnecessary as this ...
... > Functions: then hover your mouse over the function and select "REST API". Enable the API Key option and copy the long URL to your clipboard for use in the above function:
Set up a schedule
If ...
... pages, so including the above plus some calculation to work out how many times to loop should retrieve every thing:
//
// initialize
l_AllProducts = List();
v_TotalCategories = 0;
v_TotalProducts ...
... integrity check)
c_ExistingDocument = Document[ID == v_ZC_DocumentRecordID];
info c_ExistingDocument.Document_File;
I have all of the above in the same function. I've split it out to explain ...
... need to mark as sent as sending via the above will automatically do that in ZohoBooks.
}
}
}
Additional
You can include a parameter in the request when creating an invoice which is sent = ...
... to check, just round em (also means you don't need the above function to count decimals)
var v_ProductCost = ZDK.Page.getField('Purchase_Rate').getValue();
ZDK.Page.getField("Purchase_Rate").setValue(parseFloat(v_ProductCost).toFixed(6));
...
... Display As: "Image"
You can now specify the size of the image as well (16x16 is a tad small).
Caveat(s):
A bit work needs to be done to the code above to prevent attachments from going in twice ...
... generates all email signatures (no criteria). You will need to change the HTML signature and use the Image Source URLs returned from the above function to generate a HTML signature, then use placeholders ...
... = ifnull(r_MaximumCount.get("count"),0).toLong();
v_Pages = ceil(v_MaxCount / v_PerPage);
info v_Pages;
Additional
Urlencoding or not didn't have much affect on the above but it is recommended yo ...
... Pipeline");
}
Save and Close
Issue(s) Encountered
Using the CS IDE Run: This can't run ZDK Apps.CRM.Users (this can't read any module)... Simply save the above code and test it using th ...
... it works then the connection string is fine.
What I was doing?:
I'm not saying this is the solution to whenever you get the above error; I'm just saying this what I was doing and this is what fixed ...
...
}
Caveat(s):
There was a risk that the removeAll() command would remove every customer from the "all" list. That didn't happen so the above code works at time of print. Things can change though ...
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? ...
... article link above), we're going to use the GetOrders call for order (sales) management.
/*
Function: fn_GetEbayOrders()
Purpose: Queries eBay for all orders for a specified year
...
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.