How to get the FSM Service Report Attached to Deal/Account/Contact record on CRM
Seamlessly Attaching FSM Service Reports to Zoho CRM
Service reports play a crucial role in tracking completed work, recording customer interactions, and ensuring smooth business operations. In Zoho FSM (Field Service Management), service reports contain important details about service appointments and technician activities. For a more streamlined workflow, businesses need to integrate these reports with Zoho CRM by attaching them to Deals, Accounts, or Contacts.
This article provides a step-by-step guide on fetching FSM service reports and attaching them to CRM records using Zoho's APIs. We'll walk through the implementation, including fetching service appointment details, retrieving the service report, and linking it to a deal in Zoho CRM.
Implementation: Fetching and Attaching FSM Service Reports to CRM
Below is the Deluge script that automates the process of retrieving the FSM service report and attaching it to a deal in Zoho CRM:
- /*
- This script retrieves a service report PDF from Zoho FSM (Field Service Management),
- attaches it as a note to the related Work Order in FSM, and then attaches the same PDF
- to the corresponding Deal in Zoho CRM.
- */
- // Get the Service Appointment ID
- sa_id = service_appointment.get("id");
- // Get the Work Order ID from the Service Appointment
- wo_id = service_appointment.get("Work_Order").get("id");
- // Retrieve the Work Order details using its ID
- wo = zoho.fsm.getRecordById("Work_Orders",wo_id);
- // Get the Deal ID associated with the Work Order
- deal_id = wo.get("data").get(0).get("ZCRM_Deals").get("ZCRM_Deals_Id");
- // Fetch the service report associated with the Service Appointment
- response = invokeurl
- [
- url :"https://fsm.zoho.eu/fsm/v1/Service_Appointments/" + sa_id + "/Service_Reports"
- type :GET
- connection:"fsmtofsm" // FSM connection name
- ];
- info response; // Log the response for debugging
- // Extract the file ID of the Service Report PDF
- file_id = response.get("data").get(0).get("Service_Report_PDF").get(0).get("file_Id");
- // Create a note in the Work Order in FSM
- params = Map();
- params.put("Note_Title","Service Report"); // Set the note title
- params.put("Note_Content","Service Report PDF"); // Set the note content
- datalist = List();
- datalist.add(params);
- data = Map();
- data.put("data",datalist);
- info data; // Log the data being sent for the note
- note = invokeurl
- [
- url :"https://fsm.zoho.eu/fsm/v1/Work_Orders/" + wo_id + "/Notes"
- type :POST
- parameters:data.toString()
- connection:"fsmtofsm" // FSM connection name
- ];
- info note; // Log the note creation response
- // Extract the ID of the newly created note
- note_id = note.get("data").get(0).get("details").get("id");
- // Attach the Service Report PDF to the created note in FSM
- filemap = Map();
- filemap.put("File_Id",file_id);
- filemap.put("File_Name","Service_report.pdf"); // Set the file name
- flist = list();
- flist.add(filemap);
- final_map = Map();
- final_map.put("data",flist);
- info final_map; // Log the data for the attachment
- attachment = invokeurl
- [
- url :"https://fsm.zoho.eu/fsm/v1/Notes/" + note_id + "/Attachments"
- type :POST
- parameters:final_map.toString()
- connection:"fsmtofsm" // FSM connection name
- ];
- info attachment; // Log the attachment response
- // Fetch the attached note (this section seems redundant as we already have the note_id)
- notest_resp = zoho.fsm.getRelatedRecords("Notes","Service_Appointments",sa_id);
- info notest_resp;
- // Get the file ID of the attached file (again, redundant)
- attachment = notest_resp.get("data").get("0").get("$attachments").get("0").get("$file_id");
- // Download the file (This is done to prepare the file for CRM attachment)
- fileResp = invokeurl
- [
- url :"https://fsm.zoho.eu/fsm/v1/files?file_id=" + attachment
- type :GET
- connection:"fsmtofsm1" // Different FSM connection? Check if needed.
- ];
- info fileResp; // Log the file download response
- filename = "Service report" + ".pdf";
- fileResp.setFileType("pdf");
- fileResp.setFileName(filename);
- // Attach the downloaded PDF to the Deal in Zoho CRM
- attachtodeal = zoho.crm.attachFile("Deals",deal_id,fileResp,"crmconnection1"); // CRM connection name
- info attachtodeal; // Log the CRM attachment response
- /*
- Key Improvements and Explanations:
- * Comments added to explain each step of the script.
- * Redundant code (fetching the note and attachment again) is pointed out. It can be removed for efficiency.
- * Connection names are highlighted - ensure they are correct.
- * Logging (info statements) are crucial for debugging. Keep them or add more if needed.
- * The script assumes the necessary connections ("fsmtofsm", "fsmtofsm1", "crmconnection1") are already configured in Zoho Creator.
- * The redundant fetching of the note and attachment (lines 75-84) can be optimized. The `note_id` and `file_id` are already available, so you can directly use them to construct the final `fileResp` for CRM attachment. This avoids an unnecessary API call.
- */
Step by Step Explanation
1. Fetch the Service Appointment ID and Work Order ID
Extract the id
of the Service Appointment (sa_id
).
Retrieve the associated Work Order ID (wo_id
).
Fetch the Work Order details using the zoho.fsm.getRecordById
API.
Extract the related Deal ID from the Work Order.
2. Fetch the FSM Service Report
3. Create a Note in the Work Order
4. Attach the Service Report to the Note
5. Retrieve the Note with the Attached File
6. Download the Service Report File
7. Attach the Service Report to the CRM Deal
Zoho FSM and CRM APIs Used
1. Fetch the FSM Service Report
URL: Fetch Service Reports
Endpoint: /fsm/v1/Service_Appointments/{sa_id}/Service_Reports
Method: GET
Purpose:
Retrieve the service report linked to a service appointment.
2. Create a Note in Work Order
3. Attach the File to the Note
4. Download the Service Report File
5. Attach the Service Report to CRM Deal
URL: Attach File to CRM Deal
Endpoint: /crm/v6/Deals/{deal_id}/Attachments
Method: POST
Purpose:
Attach the service report to a deal in Zoho CRM.
Conclusion
By automating the attachment of FSM service reports to CRM records, businesses can enhance data accessibility, improve service tracking, and ensure seamless operations. This integration ensures that all service-related documents are readily available within the CRM, enabling better customer interactions and informed decision-making.
Related Articles
Email Association With Deal
Email Association With Deal Email Views From the Deals Module Auto-link Emails by Deal Prediction Mechanism Link, Unlink or Change Deal Manually Deactivate IMAP Integration There can be instances when a contact that you handle has multiple deals ...
Managing CRM Account Settings
Managing CRM Account Setting Change Personal Information Add Social Information Change Locale Information Change Name Format & Preferences Use Signature Once you sign up for the CRM and have your own account, you can personalise your CRM account. ...
Using CRM View for Activities
Using CRM View for Activities View Record Details from CRM View For any sales person, a typical day at work is loaded with tasks. It could be the field work to visit a prospect for a demo, or the task to call up a prospect to discuss a deal, or to ...
CRM Terminologies
Know CRM Terminologies In any business environment, there are terms such as Leads, Deals, Campaigns, Invoices, etc. Following are the list of such terms and their definitions as used in the CRM. You can refer to more such terms in the CRM's Glossary. ...
CRM for Google Account Users
CRM for Google Account Users This feature is for the Google Account users. Google Apps Account users can refer to the CRM for Google Apps Users The CRM for Google makes it easier for your business to collaborate, communicate and share information, ...