1 answer

  1.  
    1
    0
    -1

    Hello,


    From the source Jira Outgoing sync, try to send the field like this.


    replica."Approved By" = issue.customFields."Approved By"



    On the Target Jira incoming sync you will need to fetch the displayNames/email addresses of the users who are assigned on source.

    You may try something like


    for(int i=0; i<replica."Approved By".value[0].size(); i++)
    {
    issue.customFields."Approved By".value += nodeHelper.getUserByFullName(replica."Approved By".value.displayName[i].toString())
    }   


    Thanks,

    Dhiren

      CommentAdd your comment...