Assuming quoteid is required, the following 9 results were found.
invoice selected var v_InvoiceType = ZDK.Page.getField('Invoice_Type').getValue(); // check source quote is specified var v_QuoteID = ZDK.Page.getField('Converted_From_ID').getValue(); // only make changes to the invoice if 1 of the 2 invoice types...
Function: void automation.fn_Quotes_OnEdit(int p_QuoteID) Label: Fn - Quotes - On Edit Trigger: Used in a workflow when a quote is modified Purpose: Actions when a quote is modified Inputs: int p_QuoteID - the ID of the CRM Quote Record Outputs: void...
all other options. Take the following code for example, this will add 20% tax to the overall Tax on this record (where p_QuoteID is the ID of the quote): // init Map m_UpdateQuote = Map(); // r_QuoteDetails = zoho.crm.getRecordById("Quotes", p_QuoteID);...
and here's the code to associate 1 user in the multi-user lookup: m_AssociateMultiUserLookup = {"data":[{"id":p_QuoteID, "Requires_Approval_Users":[{"Requires_Approval_Users":{"id":m_ApprovalUser.get("id")}}]}]}; r_AssociateMultiUserLookup = invokeurl [...
{ for each m_ThisQuote in r_AllXeroQuotes.get("Quotes") { if(!isnull(m_ThisQuote.get("QuoteID"))) { // // counter v_Count_FoundInXero = v_Count_FoundInXero + 1; // // Xero Quote identifier v_XeroQuoteID = m_ThisQuote.get("QuoteID"); info "From Xero:";...
= "123456789012345678"; // // 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 =...
greater l_BooksLineItems = List(); r_CrmProductLineItems = invokeurl [ url :"https://www.zohoapis.eu/crm/v2.1/Quotes/" + p_QuoteID type :GET parameters:m_ApprovedConverted connection:"zcrm" ]; // should be checking here that data contains any rows but...
v_AppLinkName = zoho.appname; v_ViewLinkName = "myForm_View"; // put your own report name v_CreatorRecordID = v_CreatorQuoteID; // this is the creator record id that has the attachment v_SubFormName = "mySubform"; // put here the link name of your...
"My Test Document"; r_DownloadResponse.setFileName(v_Filename + ".pdf"); r_AttachResponse = zoho.crm.attachFile("Quotes",p_QuoteID,r_DownloadResponse); Use a subform (eg. Product Line Items) If I call my subform "Quoted Items" and specify this having...