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 ...
... = ifnull(c_Document.File_field,"");
//
// used for blocking certain file extensions (not used in this function)
v_DocExtension = v_DocFileName.subString(v_DocFileName.lastIndexOf(".") ...
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? ...
... from eBay:";
//info x_ResponseBody;
//
// get pagination results from the first iteration/page
if(v_Page == 1)
{
//
// get page results
x_PaginationResult = x_ResponseBody.subStrin ...
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 ...
... // other fields to fill in for this subform row
v_RateCardDisp = v_RateCard.indexOf(" (")>0 ? v_RateCard.substring(0, v_RateCard.indexOf(" (")) : v_RateCard;
json_Arg.Rate_Change_Notes = v_RateCardDisp;
...
... added row in that subform (on user input). This sets the document name for display later:
if(!isnull(row.Document_File))
{
v_FileDetected = row.Document_File;
if(v_FileDetected.contains("_"))
{
v_SubstringStart ...
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?
A quick article to demonstrate code that creates a task in CRM based on the time logged against an Event/Meeting.
Why?
As developers, we're keep account of our time and we are currently ...
... timezone, add 10 minutes, re-assemble it in a format that CRM likes, and update the field:
//
// parse date into yyyy-MM-dd (using subString - reliable)
v_LeadCreatedDate = r_LeadDetails.get("Created_Time").subString(0,4) ...
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.