How to get the FSM Service Report Attached to Deal/Account/Contact record on CRM

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:

  1. /*
  2. This script retrieves a service report PDF from Zoho FSM (Field Service Management),
  3. attaches it as a note to the related Work Order in FSM, and then attaches the same PDF
  4. to the corresponding Deal in Zoho CRM.
  5. */

  6. // Get the Service Appointment ID
  7. sa_id = service_appointment.get("id");

  8. // Get the Work Order ID from the Service Appointment
  9. wo_id = service_appointment.get("Work_Order").get("id");

  10. // Retrieve the Work Order details using its ID
  11. wo = zoho.fsm.getRecordById("Work_Orders",wo_id);

  12. // Get the Deal ID associated with the Work Order
  13. deal_id = wo.get("data").get(0).get("ZCRM_Deals").get("ZCRM_Deals_Id");

  14. // Fetch the service report associated with the Service Appointment
  15. response = invokeurl
  16. [
  17. url :"https://fsm.zoho.eu/fsm/v1/Service_Appointments/" + sa_id + "/Service_Reports"
  18. type :GET
  19. connection:"fsmtofsm" // FSM connection name
  20. ];
  21. info response; // Log the response for debugging

  22. // Extract the file ID of the Service Report PDF
  23. file_id = response.get("data").get(0).get("Service_Report_PDF").get(0).get("file_Id");

  24. // Create a note in the Work Order in FSM
  25. params = Map();
  26. params.put("Note_Title","Service Report"); // Set the note title
  27. params.put("Note_Content","Service Report PDF"); // Set the note content
  28. datalist = List();
  29. datalist.add(params);
  30. data = Map();
  31. data.put("data",datalist);
  32. info data; // Log the data being sent for the note

  33. note = invokeurl
  34. [
  35. url :"https://fsm.zoho.eu/fsm/v1/Work_Orders/" + wo_id + "/Notes"
  36. type :POST
  37. parameters:data.toString()
  38. connection:"fsmtofsm" // FSM connection name
  39. ];
  40. info note; // Log the note creation response

  41. // Extract the ID of the newly created note
  42. note_id = note.get("data").get(0).get("details").get("id");

  43. // Attach the Service Report PDF to the created note in FSM
  44. filemap = Map();
  45. filemap.put("File_Id",file_id);
  46. filemap.put("File_Name","Service_report.pdf"); // Set the file name
  47. flist = list();
  48. flist.add(filemap);
  49. final_map = Map();
  50. final_map.put("data",flist);
  51. info final_map; // Log the data for the attachment

  52. attachment = invokeurl
  53. [
  54. url :"https://fsm.zoho.eu/fsm/v1/Notes/" + note_id + "/Attachments"
  55. type :POST
  56. parameters:final_map.toString()
  57. connection:"fsmtofsm" // FSM connection name
  58. ];
  59. info attachment; // Log the attachment response

  60. // Fetch the attached note (this section seems redundant as we already have the note_id)
  61. notest_resp = zoho.fsm.getRelatedRecords("Notes","Service_Appointments",sa_id);
  62. info notest_resp;

  63. // Get the file ID of the attached file (again, redundant)
  64. attachment = notest_resp.get("data").get("0").get("$attachments").get("0").get("$file_id");

  65. // Download the file (This is done to prepare the file for CRM attachment)
  66. fileResp = invokeurl
  67. [
  68. url :"https://fsm.zoho.eu/fsm/v1/files?file_id=" + attachment
  69. type :GET
  70. connection:"fsmtofsm1" // Different FSM connection? Check if needed.
  71. ];
  72. info fileResp; // Log the file download response

  73. filename = "Service report" + ".pdf";
  74. fileResp.setFileType("pdf");
  75. fileResp.setFileName(filename);

  76. // Attach the downloaded PDF to the Deal in Zoho CRM
  77. attachtodeal = zoho.crm.attachFile("Deals",deal_id,fileResp,"crmconnection1"); // CRM connection name
  78. info attachtodeal; // Log the CRM attachment response

  79. /*
  80. Key Improvements and Explanations:

  81. * Comments added to explain each step of the script.
  82. * Redundant code (fetching the note and attachment again) is pointed out.  It can be removed for efficiency.
  83. * Connection names are highlighted - ensure they are correct.
  84. * Logging (info statements) are crucial for debugging.  Keep them or add more if needed.
  85. * The script assumes the necessary connections ("fsmtofsm", "fsmtofsm1", "crmconnection1") are already configured in Zoho Creator.
  86. * 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.
  87. */

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

  • Make a GET API request to retrieve the service report attached to the Service Appointment.

  • Extract the file ID of the service report PDF.

3. Create a Note in the Work Order

  • Create a note in Zoho FSM under the corresponding Work Order using the POST API request.

  • Store the newly created note ID.

4. Attach the Service Report to the Note

  • Prepare the attachment payload with the file ID and file name.

  • Use the POST API request to attach the service report PDF to the Work Order note.

5. Retrieve the Note with the Attached File

  • Fetch the related records (Notes) for the Service Appointment.

  • Extract the file ID of the attached service report.

6. Download the Service Report File

  • Use the GET API request to download the service report file using the extracted file ID.

  • Set the file type to pdf and name it appropriately.

7. Attach the Service Report to the CRM Deal

  • Use the zoho.crm.attachFile function to attach the service report to the corresponding deal in Zoho CRM.

  • Confirm the attachment by logging the response.


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

  • URL: Create a Note

  • Endpoint: /fsm/v1/Work_Orders/{wo_id}/Notes

  • Method: POST

  • Purpose:
    Add a note to the work order in FSM.

3. Attach the File to the Note

  • URL: Attach File to Note

  • Endpoint: /fsm/v1/Notes/{note_id}/Attachments

  • Method: POST

  • Purpose:
    Attach a file to the created note in FSM.

4. Download the Service Report File

  • URL: Download File

  • Endpoint: /fsm/v1/files?file_id={file_id}

  • Method: GET

  • Purpose:
    Download the attached service report from FSM.

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.


SERVICE REPORT IN FSM





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