- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
3 weeks ago
Hi All,
How to update Jira story if any update occurs at ServiceNow catalog task by using Jira spoke.
For example if description updated at catalog task, want to update description of story created at Jira. and vice versa if description updated at Jira side, should update description at ServiceNow
Thank you in advance
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
3 weeks ago
Hi @jack33 ,
Ensure the integration user (in the Jira Spoke Connection) has:
Project role: Administrator or
Field-level permission to edit the fields.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
3 weeks ago
Hi @jack33 ,
From ServiceNow → Jira
Trigger: When a catalog task is updated (e.g., description field changes).
Option A – Business Rule → Flow
Create a Business Rule on sc_task table:
when = after update
condition = current.description.changes()
Action = trigger a Flow (or directly call the Jira Spoke action).
In Flow Designer:
Trigger = Catalog Task [sc_task] record updated.
Condition = Description field changed.
Action = Jira Spoke → Update Issue.
Input: Issue Key (store the Jira issue key in a reference/field when you first created it).
Set description = current.description.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
3 weeks ago
Thank you Pavani, will try this solution
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
3 weeks ago
I am getting below error:
"message": "Error: Connect app users with \"admin\" permission and Forge apps acting on behalf of users with ADMINISTER permission can override the editable flag. (Process Automation.6dd7c7b877a51110cc985228c8106195; line 5
Can you please guide me what is missing here?
Thank you
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
3 weeks ago
Hi @jack33 ,
Ensure the integration user (in the Jira Spoke Connection) has:
Project role: Administrator or
Field-level permission to edit the fields.