... get the quote details given a record ID
r_QuoteDetails = zoho.crm.getRecordById("Quotes",p_QuoteID);
//
// check target email is not null/blank
if(!isnull(r_QuoteDetails.get("Email")))
{
v_Url ...
... form is called "Quotes" and my subform is called "Line_Items":
// initialize variables
// ... this is a demo so ... do your own ...
//
// get source data
r_QuoteDetails = zoho.crm.getRecordById("Quotes", ...
... to retrieve all the data in each record r_QuoteDetails = Partners_Quote[ID == r_Quote.ID];. In the example below, this is a merging process of each quote which only contains 1 line item and not a subform ...
... loop through attachments and associate to crm record
if(v_CrmSoID != 0)
{
r_CreatorQuoteDetails = Quote[ID == v_CreatorQuoteID];
if(!isnull(r_CreatorQuoteDetails.Attachments))
{
// loo ...
... p_QuoteID is the ID of the quote):
// init Map
m_UpdateQuote = Map();
//
r_QuoteDetails = zoho.crm.getRecordById("Quotes", p_QuoteID);
v_SubTotal = r_QuoteDetails.get("Sub_Total").toDecimal() * ...
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.