What?
This is a quick article documenting how to update custom fields in a line items or product details section of a transactional module such as Quotes, Sales Orders or Invoices using code: Zoho Deluge. ...
... and Details Page (Standard). My use-case has a requirement that another dropdown called "Order Type" has to be set to "Supplier". My file upload field is called "Order Confirmation".
v_OrderType = ZDK.Page.getField('Order_Type').getValue();
if ...
... information that may help
******************************************************************************* */
//
// initialize
m_UpdateQuote = Map();
//
// get quote details
v_Endpoint = "https://www.zohoapis.com/crm/v7/Quotes/" ...
... support.";
}
//
// get contact record details
r_Contact = zoho.crm.getRecordById("Contacts",p_ContactID);
// info r_Contact;
//
// if email exists then create the ZohoSign Document record for tracking ...
... double-check in case books has returned 1st page rather than filtered rows
if(m_DataRow.get("SO ID") == v_SalesOrderID)
{
m_Details = Map();
m_Details.put("po_date",m_DataRow.get("PO Date").toDate().toString("dd-MMM-yyyy"));
m_Details.put("po_ref",);
m_Details.put("po_status",m_DataRow.get("P ...
... ensuring you are on the "Home" page (click on "Home" in top menu if not),
// then click on the cog icon "Organization Settings", then click on "Organization Details",
// then look at the URL (website address) ...
... */
//
// blank map to use
m_Blank = Map();
//
// set timezone of this user (this CRM is set to GMT-07:00 with daylight savings in effect)
v_ThisTimeZone = "Europe/London";
//
// get details from ...
... = 0;
//
// get this order details from ZohoCreator
c_ThisOrder = Order[ID == v_OrderID];
//
// get this customer record from ZohoCreator
c_ThisCustomer = Customer[ID == c_ThisOrder.Customer];
if(c_ThisCustomer.count() ...
... mine "Extra Confidential"
Keep Category=Module, set Page=Detail Page (Standard), set Module=Contacts and set the layout if you want.
Under Event Details, set Type=Page Event; Event=onLoad
Click on ...
... of ticket or attachment webhook, will push some of the details of the ticket and all/any attachments to a Zoho Creator form.
The ticket form has the ticket reference, product information, factory/supplier, ...
...
You should be in the "Organization Settings"
Click on any page in the left sidebar (eg. Plan Details), your Org ID is in the URL as the last number after the slash (eg. "20012345678")
Note this dow ...
... to be unable to handle a lot of code or long URLs such as a base64 source URL for an image.
The Plan
Get company phone and website from Organization Details in ZohoCRM.
Upload and get publicly-accessible ...
...
Why is this a challenge? The file contains bank details and should not be stored anywhere. Generating a text or CSV file and then having it emailed to anyone is an easy task but here we cannot have ...
... an invoice. Please refer to the Zoho Books API documentation for what fields are required to complete a request within your system.
m_InvoiceDetails = Map();
m_InvoiceDetails.put("customer_id",m_BooksSO.get("customer_id"));
m_InvoiceDetails.put("payment_terms",-3);
// ...
... the following instructions to these instead.
ZohoCRM: Get Details as Zoho User
The values are the same for the CRM app for all organizations, but in case these change since time-of-print of this ...
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? ...
... each index v_Increment in l_AddPages
{
l_Pages.add(v_Increment + 1);
}
v_TotalNumberOfPages = l_Pages.size();
//
// declare variables to store order details in a JSON or ZohoDeluge Map format
m_Response ...
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.