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 ...
... */
//
// initialize
v_LastSyncTime = null;
v_LastSyncStatus = "?";
m_DataSourceInfo = Map();
//
// read the TLD (eu or com or com.in) from the URL when logged into Zoho Analytics
v_BaseURL = "https://analyticsapi.zoho.com";
//
// ...
... lead record
r_LeadDetails = zoho.crm.getRecordById("Leads",p_LeadID);
//
// get created time (no need to check if null?)
v_LeadCreatedTime = r_LeadDetails.get("Created_Time");
//
// convert to time ...
... = zoho.creator.createRecord("myOwnerName","myAppName","myFormName",m_CreateRecord,m_Blank,"myCreatorConnection");
//
// build the hash based on the payload body
v_Data = ifnull(m_Payload.get("body"),"");
v_VerifyHash ...
... you can lock it down to just the scopes you need.
void ZohoBooks.fn_SendZohoBooksInvoice(int p_OrderID)
{
v_OrderID = ifnull(input.p_OrderID,0).toLong();
/* *******************************************************************************
Function: ...
... */
//
// Go create a folder in workdrive, take the last hash string after the word /folders/ in the URL:
v_TargetFolder = ifnull(p_WorkdriveFolder,"abcdefghijklmnopqrstuvwxyz12345678901");
v_ImageToDownload ...
... + v_BooksOrgID
type :GET
connection:"zbooks"
];
m_NominalAccounts = Map();
if(!isnull(r_ChartOfAccounts.get("chartofaccounts")))
{
for each m_NomAccount in r_ChartOfAccounts.get("chartofaccounts")
{
m_NominalAccounts.put(m_NomAccount.get("account_name"),m_NomAccount.get("account_id"));
}
}
info ...
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.