- 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
this helped, thanks alot
However i am still facing issue to update comment and state field from ServiceNow
Comment <> worknote
Jira state <> catalog task state
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
2 weeks ago
Hi @jack33 ,
Do you have state value mapping between these tools like below:
var jiraToSNOWState = {
"To Do": 1, // Open
"In Progress": 2, // Work in Progress
"Resolved": 3, // Closed Complete
"Cancelled": 4 // Closed Incomplete
};
Also for comments, just try to send latest comments by getJournalEntry()
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
2 weeks ago
where should I do this mapping, kindly guide me