Question

Assistance Required with Utilising Custom Objects in Forms and Automations

  • 20 February 2024
  • 3 replies
  • 55 views

Badge

Hello Freshservice Community,

I am currently exploring the capabilities of Freshservice, specifically focusing on the integration of Custom Objects within Service Request Forms and subsequent Automations. However, I am encountering some challenges in implementing this as per my initial understanding, and I would greatly appreciate any guidance or clarification you might offer.

Use case below: Teams Automation using a Template selection in human readable format that get the Template ID from related field in custom object.

 

Scenario:

I have created a Custom Object with the following fields:

  • Teams Template Name (Text - Lookup)
  • Teams Template ID (Text)
  • Teams Template Description (Text)

My objective is to utilise these Custom Objects to streamline a Service Request Form and an associated Automation.

Service Request Form Configuration:

  • Field Name: Teams Template Selection
  • Configuration: Dropdown field linked to Custom Object > Teams Template Name

Automation Attempt:

  • Reader: Set to filter where Teams Template Selection matches Custom Object > Teams Template Name

My expectation was that, following this setup, I would be able to access the Teams Template ID and Teams Template Description within the Automation, based on the selection made in the Service Request Form.

Issue Encountered: Unfortunately, when setting up the Reader in the Automation, I do not see the option to access the Custom Object fields directly. It appears that the linkage between the selection in the form and accessing related Custom Object fields in the Automation is not functioning as I had anticipated.

As a workaround, I considered using a Dropdown in the form with Text values that directly match the fields in Teams Template Name. However, this approach requires maintaining both a Custom Object and a separate Dropdown list, which seems inefficient and contrary to the purpose of Custom Objects.

Request for Assistance:

  • Has anyone successfully integrated Custom Objects in this manner, or is there a limitation I have overlooked?
  • Are there best practices or alternative approaches within Freshservice to achieve this functionality without duplicating maintenance efforts?
  • Any insights or pointers towards documentation or examples that clarify this use case would be immensely helpful.

Thank you in advance for your time and assistance. I am eager to learn from your experiences and find a solution to this challenge.

Best regards,

Ben


3 replies

Badge

Anyone got any ideas on this? Thanks

Userlevel 3
Badge +4

Hi Ben,

It’s been a while since I have created a workflow that required looking at custom objects, readers, etc… I vaguely remember encountering a similar issue.

Nevertheless, here’s what I have in a workflow and hopefully it might help you. Below picture does the following to reference the Custom Object table and then used the values elsewhere in the workflow

  1. Web Request node > Get request for the service item.
    1. /api/v2/tickets/{{ticket.id_numeric}}/requested_items
  2. JSON Parser node > reads the response body from requested item.
  3. Reader node > grabs the record ID from the parser node.

 

I can then reference the reader node in other actions and pull other fields from the custom object record.

I wonder if you can reference the requested item custom field directly in the filter section of the reader node. This might bypass the need to make a GET request and use the parser node. I can’t remember if I ran into an issue with that method potentially?

I am hoping that you have found a solution in the two months since you have had this query but if not, happy to clarify my response or offer other suggestions.

Good luck!

Userlevel 7
Badge +13

Hello Freshservice Community,

I am currently exploring the capabilities of Freshservice, specifically focusing on the integration of Custom Objects within Service Request Forms and subsequent Automations. However, I am encountering some challenges in implementing this as per my initial understanding, and I would greatly appreciate any guidance or clarification you might offer.

Use case below: Teams Automation using a Template selection in human readable format that get the Template ID from related field in custom object.

 

Scenario:

I have created a Custom Object with the following fields:

  • Teams Template Name (Text - Lookup)
  • Teams Template ID (Text)
  • Teams Template Description (Text)

My objective is to utilise these Custom Objects to streamline a Service Request Form and an associated Automation.

Service Request Form Configuration:

  • Field Name: Teams Template Selection
  • Configuration: Dropdown field linked to Custom Object > Teams Template Name

Automation Attempt:

  • Reader: Set to filter where Teams Template Selection matches Custom Object > Teams Template Name

My expectation was that, following this setup, I would be able to access the Teams Template ID and Teams Template Description within the Automation, based on the selection made in the Service Request Form.

Issue Encountered: Unfortunately, when setting up the Reader in the Automation, I do not see the option to access the Custom Object fields directly. It appears that the linkage between the selection in the form and accessing related Custom Object fields in the Automation is not functioning as I had anticipated.

As a workaround, I considered using a Dropdown in the form with Text values that directly match the fields in Teams Template Name. However, this approach requires maintaining both a Custom Object and a separate Dropdown list, which seems inefficient and contrary to the purpose of Custom Objects.

Request for Assistance:

  • Has anyone successfully integrated Custom Objects in this manner, or is there a limitation I have overlooked?
  • Are there best practices or alternative approaches within Freshservice to achieve this functionality without duplicating maintenance efforts?
  • Any insights or pointers towards documentation or examples that clarify this use case would be immensely helpful.

Thank you in advance for your time and assistance. I am eager to learn from your experiences and find a solution to this challenge.

Best regards,

Ben

Should work, try to use record ID in the Read node to the custom field in the service item. 

Reply