Zoho CRM

How to auto capture date in any module of Zoho CRM (T+15)

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: 
    • Related Articles

    • How to fetch & update records in Sub Form in Zoho CRM.

      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 Create, Update, Read and Delete records in Zoho CRM.

      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 ...
    • How to Create an RFQ process in Zoho CRM.

      Task: A process to send RFQ (Request for Quote) to the vendor which is then filled by him to generate a RFQ record in Zoho CRM. (e.g., “By following the instructions, you’ll be able to achieve below steps smoothly” “This article will help you set up ...
    • How to Create a Task and Populate a Custom Date/Time Field with a TAT.

      Task: We first create a task based on lead status change. We will be then populating a custom date/time field which can be used as a TAT. The TAT will be adjusted according to the users shift hours and working days. Prerequisites (if applicable): ...
    • How to Populate City and State Based on Zip Code

      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 ...