Function-20: Create Events automatically on specific days of the week

Function-20: Create Events automatically on specific days of the week



Welcome back everyone!

Last week, we learnt how to add leads to campaign records at the click of a button. This week, let's look at a custom function that helps you create events automatically on specific days of the week.

Business scenario:

Customer visits are an integral part of most sales processes. Apart from aiding you close sales efficiently, meeting with customers help maintain an ongoing business relationship, a critical component in customer retention. The Event records in the Activities module of Zoho CRM helps track and maintain a record of all your customer meetings.

Depending on what business you or your company is in, your sales process might warrant meeting with a set of prospects or customers at regular intervals. Once such requirement is possibly to conduct events on a regular basis. Wouldn't it be redundant to keep creating activities everytime? Besides, you are tasked with following-up with the event in case you are not the one attending. How about letting the CRM create an Event at fixed intervals without requiring you to manually create them? This week's custom function does exactly that.

Pre-requisites:

  • This custom function can be used for any module. For instance, there can be an event scheduled for leads, for existing customers, or even for your partners. Just that, you need to create multiple copies of the same custom function with the corresponding information.

Getting started with the custom function:

  • Go to Setup > Automations > Actions > Custom Functions > Configure Custom Function > Write your own.
  • Provide a name for the custom function. For example: “Create events on Saturdays”. Add a description(optional).
  • Select the module as Leads. Add a description(optional).
  • Click “Free flow scripting”.
  • Copy the code given below.
  • Click “Edit arguments”.
  • Enter the name as “leadId” and select the value as “Lead Id”.
  • Save the changes.

The script:

Code for Version 2.0 API:
 
leadDetails = zoho.crm.getRecordById("Leads",input.leadId.toLong());
first = ifnull(leadDetails.get("First_Name"),"");
last = ifnull(leadDetails.get("Last_Name"),"");
name = first + " " + last + " BIF ";
dayOfWeek = today.toDate().getDayOfWeek();
if (dayOfWeek = 1)
{
newDate = today.toDate().addDay(6);
}
else if (dayOfWeek = 2)
{
newDate = today.toDate().addDay(5);
}
else if (dayOfWeek = 3)
{
newDate = today.toDate().addDay(4);
}
else if (dayOfWeek = 4)
{
newDate = today.toDate().addDay(3);
}
else if (dayOfWeek = 5)
{
newDate = today.toDate().addDay(2);
}
else if (dayOfWeek = 6)
{
newDate = today.toDate().addDay(1);
}
else if (dayOfWeek = 7)
{
newDate = today;
}
start = newDate.toString("yyyy-MM-dd");
eventMap = map();
eventMap.put("Subject", name);
eventMap.put("Owner", ifnull(leadDetails.get("Owner"),"").get("id"));
eventMap.put("Start_DateTime", start+"T09:00:00+05:30");
eventMap.put("End_DateTime", start+"T10:00:00+05:30");
eventMap.put("What_Id", input.leadId);
eventMap.put("se_module", "Leads");
createEvent = zoho.crm.create("Events", eventMap);
info eventMap;
info createEvent;

Code for Version 1.0 API:

leadDetails = zoho.crm.getRecordById("Leads", input.leadId);
first = ifnull(leadDetails.get("First Name"),"");
last = ifnull(leadDetails.get("Last Name"),"");
name = first + " " + last + " BIF ";
dayOfWeek = today.toDate().getDayOfWeek();
if (dayOfWeek = 1)
{
newDate = today.toDate().addDay(6);
}
else if (dayOfWeek = 2)
{
newDate = today.toDate().addDay(5);
}
else if (dayOfWeek = 3)
{
newDate = today.toDate().addDay(4);
}
else if (dayOfWeek = 4)
{
newDate = today.toDate().addDay(3);
}
else if (dayOfWeek = 5)
{
newDate = today.toDate().addDay(2);
}
else if (dayOfWeek = 6)
{
newDate = today.toDate().addDay(1);
}
else if (dayOfWeek = 7)
{
newDate = today;
}
start = newDate.toString("dd-MM-yyyy hh:mm:ss");
end = newDate.toString("dd-MM-yyyy hh:mm:ss");
eventMap = map();
eventMap.put("Subject", name);
eventMap.put("SMOWNERID", ifnull(leadDetails.get("SMOWNERID"),""));
eventMap.put("Start DateTime", start);
eventMap.put("End DateTime", end);
eventMap.put("SEID", input.leadId);
eventMap.put("SEMODULE", "Leads");
createEvent = zoho.crm.create("Events", eventMap);
info eventMap;
info createEvent;

Note:

  • To use this custom function to create an event on any other day of the week, change the "newDate" parameter of the specific day to "today". Keep in mind that Sunday is 1, Monday is 2, and so on.

Found this useful? Try it out and let me know how it works! If you have questions, do not hesitate to ask! Share this with your team if you find it useful.

Do check out other custom functions shared in this series here.

See you all next week with another interesting custom function. Ciao!

Update: As you must be aware, API V1.0 will be deprecated and support for version 1.0 API will be available only till Dec 31, 2018. Version 1.0 compatible Functions will continue to work until Dec 31, 2019. You're advised to migrated to API Version 2.0 at the earliest. Check this announcement for more. We've updated the post to include the Version 2.0 compatible Function.

    Access your files securely from anywhere







                            Zoho Developer Community




                                                  • Desk Community Learning Series


                                                  • Digest


                                                  • Functions


                                                  • Meetups


                                                  • Kbase


                                                  • Resources


                                                  • Glossary


                                                  • Desk Marketplace


                                                  • MVP Corner


                                                  • Word of the Day


                                                  • Ask the Experts



                                                            • Sticky Posts

                                                            • Function #46: Auto-Calculate Sales Margin on a Quote

                                                              Welcome back everyone! Last week's function was about displaying the discount amount in words. This week, it's going to be about automatically calculating the sales margin for a particular quote, sales order or an invoice. Business scenario Where there is sales, there's also evaluation and competition between sales reps. A healthy rivalry helps to better motivate your employees to do smart work and close deals faster and more efficiently. But how does a sales rep get evaluated? 90% of the time, it's
                                                            • Zoho CRM Functions 53: Automatically name your Deals during lead conversion.

                                                              Welcome back everyone! Last week's function was about automatically updating the recent Event date in the Accounts module. This week, it's going to be about automatically giving a custom Deal name whenever a lead is converted. Business scenario Deals are the most important records in CRM. After successful prospecting, the sales cycle is followed by deal creation, follow-up, and its subsequent closure. Being a critical function of your sales cycle, it's good to follow certain best practices. One such
                                                            • User Tips: Auto-Create Opportunity/Deal upon Quote Save (PART 1)

                                                              Problem: We use quotes which convert to sales orders but Users / Sales Reps do not create opportunities / deals and go straight to creating a quote. This leads to poor reporting. Implementing this solution improves reporting and makes it easier for users.
                                                            • Custom Function : Automatically send the Quote to the related contact

                                                              Scenario: Automatically send the Quote to the related contact.  We create Quotes for customers regularly and when we want to send the quote to the customer, we have to send it manually. We can automate this, using Custom Functions. Based on a criteria, you can trigger a workflow rule and the custom function associated to the rule and automatically send the quote to customer through an email. Please note that the quote will be sent as an inline email content and not as a PDF attachment. Please follow
                                                            • Function #50: Schedule Calls to records

                                                              Welcome back everyone! Last week's function was about changing ownership of multiple records concurrently. This week, it's going to be about scheduling calls for records in various modules. Business scenario Calls are an integral part of most sales routines.. Sales, Management, Support, all the branches of the business structure would work in cohesion only through calls. You could say they are akin to engine oil, which is required by the engine to make all of it's components function perfectly. CRM


                                                            Manage your brands on social media



                                                                  Zoho TeamInbox Resources



                                                                      Zoho CRM Plus Resources

                                                                        Zoho Books Resources


                                                                          Zoho Subscriptions Resources

                                                                            Zoho Projects Resources


                                                                              Zoho Sprints Resources


                                                                                Qntrl Resources


                                                                                  Zoho Creator Resources



                                                                                      Zoho CRM Resources

                                                                                      • CRM Community Learning Series

                                                                                        CRM Community Learning Series


                                                                                      • Kaizen

                                                                                        Kaizen

                                                                                      • Functions

                                                                                        Functions

                                                                                      • Meetups

                                                                                        Meetups

                                                                                      • Kbase

                                                                                        Kbase

                                                                                      • Resources

                                                                                        Resources

                                                                                      • Digest

                                                                                        Digest

                                                                                      • CRM Marketplace

                                                                                        CRM Marketplace

                                                                                      • MVP Corner

                                                                                        MVP Corner









                                                                                          Design. Discuss. Deliver.

                                                                                          Create visually engaging stories with Zoho Show.

                                                                                          Get Started Now


                                                                                            Zoho Show Resources

                                                                                              Zoho Writer

                                                                                              Get Started. Write Away!

                                                                                              Writer is a powerful online word processor, designed for collaborative work.

                                                                                                Zoho CRM コンテンツ



                                                                                                  Nederlandse Hulpbronnen


                                                                                                      ご検討中の方