The Community hub inside Zoho Desk lets you build a powerful community around your business, while still serving customers via other channels. Your customers can post 4 types of content within your community. These are Ideas, Questions, Problems and Discussions. Each of these serves a particular purpose. When your customers have something to discuss with you, they can post a discussion within your community. It's a great way to debate and collaborate. Your customers can ask you specific questions
User wants the date should capture as T+15 in any module of Zoho CRM. Deluge Code: Cdate = zoho.currentdate.addDay(15).toString("YYYY-MM-dd"); Zoho Link: https://www.zoho.com/deluge/help/functions/date-time.html
If you want to Create, Update, Read and Delete records in Zoho CRM in any module, please use the following code for the same: Code: var commonname = value.id; var acc = ZDK.Apps.CRM.Accounts.fetchById(commonname); var phone = acc.MobileNo; var email ...
If you want to fetch & update records in Sub Form in any module of Zoho CRM. Please use the following code: Deluge Code: data = zoho.crm.getRecordById("Asset_Master",ID);//fetchRecord sub = data.get("Contract_Information");//AccessSubbform ...
How to Populate City and State Based on Zip Code Task: We will be populating fields in Leads Module in Zoho CRM. The fields in this case are “City” and “State” based on the value of we put in Zip Code field. Prerequisites (if applicable): Client ...