1
0
-1

Morning

How do you get around the issue of when a ticket in Jira is updated to "DONE", which is mapped to ServiceNow as "RESOLVED". ServiceNow has a field, where you must enter resolution notes. How do you populate this field at this point from Jira, as Jira only has "Additional" comments,

    CommentAdd your comment...

    1 answer

    1.  
      1
      0
      -1

      Hi Everyone


      The solution to this is this the below line of script on the "Incoming Sync" in ServiceNow. "close_notes" is our field in Servicenow that needed updating


      entity.close_notes = replica.comments.size() > 0 ? replica.comments.last().body : ""


      This solution was provided by Kamal from Idalko , thanks for that!

        CommentAdd your comment...