Custom Function: Tracking the Case Closed time
Scenario: Tracking the Case Closed time
We create cases and close them but how do we keep track of the details on when the case was closed?
This custom function helps you track the closed time of a case, in a custom date-time field. You can then generate reports based on the closed time.
You need to have a custom date time field to update the Closed Time.
Please follow these steps:
- Log in to Zoho CRM with administrative privileges.
- Click Setup > Automation > Workflow > Create Rule.
- In the New Rule page, choose Cases module from the drop-down list and provide other rule details.
- Under Execute On, choose Create or Edit and then click Next.
- Specify the Rule Criteria. The rule will triggered only when a record meets the criteria mentioned here.
- In the Actions section, click on the Add button for Call Custom Functions.
- In the Configure Custom Function popup, click Write your own.
- Specify a name for the function.
- Build the Deluge Script based on the code given below.
Deluge Script:
void workflowspace.CaseClosedTime(string caseID)
{
caseiD1=input.caseID;
resp = zoho.crm.getRecordById("Cases",caseiD1.toLong());
info resp;
respStr=resp.toString();
respMap=respStr.toMap();
modifiedTime=respMap.get("Modified Time");
status=respMap.get("Status");
info status;
if((status != null) && (status == "Closed"))
{
closedTime=modifiedTime;
upresp = zoho.crm.updateRecord("cases",caseiD1,{ "Closed Time" : closedTime });
info upresp;
}
}
Note: This custom function is for the Cases module. You can modify this to track the potential closing date, task closed date and similar such date time values.
Please refer to the following link to know more about this feature:
https://www.zoho.com/crm/help/automation/custom-functions.html
Zoho SalesIQ Resources
Sticky Posts
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
Function #37: Create a Purchase Order from a Quote
Welcome back everyone! Last week, we learnt how to calculate the total number of activities for a lead and further take note of the activity count for particular dates. For instance, from the period of Demo to Negotiation. This week, let's look at a function that lets you create a Purchase Order instantly from a Quote. Business scenario: In any form of business, one of the most important things to do is to document the transactions. Naturally, negotiation, signing an agreement, placing an order,
Function-2: Round-Robin assignment of records
Welcome back folks! Last week, we saw how to update sales commission in quotes using a custom function. This week, let's see an interesting use case asked by many of you - auto-assignment records by round-robin method. Business scenario: Right now, the solution allows you to auto-assign leads from web form and imported lists. Let us look at a need where you want to auto-assign leads from in-bound calls in a round-robin method, across modules. Prerequisite: You must create a permanent record in the
Focus Group : Functions 101 - A webinar series
A lot of businesses require their CRM to perform activities that are out-of-the-box. And dynamic as Zoho CRM is, a lot of these scenarios can be achieved by running simple functions. They help you update data in CRM modules or in third-party applications and automate most of your business processes. We're organizing a four part webinar series to help you build your own functions from scratch. This series breaks down the myth that functions are complex. Follow this link to register. Note - If
Custom Function: Tracking the Case Closed time
Scenario: Tracking the Case Closed time We create cases and close them but how do we keep track of the details on when the case was closed? This custom function helps you track the closed time of a case, in a custom date-time field. You can then generate reports based on the closed time. You need to have a custom date time field to update the Closed Time. Please follow these steps: Log in to Zoho CRM with administrative privileges. Click Setup > Automation > Workflow > Create Rule. In the New Rule
Zoho Pagesense Resources
Zoho TeamInbox Resources
Zoho DataPrep Resources
Zoho CRM Plus Resources
Zoho Books Resources
Zoho Subscriptions Resources
Zoho Desk Resources
Zoho Projects Resources
Zoho Sprints Resources
Qntrl Resources
Zoho Creator Resources
Zoho WorkDrive Resources
Zoho Campaigns Resources
Zoho CRM Resources
Zoho Show Resources
Writer Get Started. Write Away!
Writer is a powerful online word processor, designed for collaborative work.