1
0
-1

How to copy single user field value to Reporter field 


  1. Ariel Aguilar

    Hi Rakesh!

    What platform are you using Exalate on? (Jira Server, Jira cloud, ServiceNow, Azure DevOps for example?)

    Kind regards,

    Ariel

  2. Rakesh Govardhan

    Hi Ariel, 

    Any update on this?

  3. Ariel Aguilar

    Hi Rakesh,

    Let's pretend you have the Outgoing script:

    replica.customFields."Contact" = issue.customFields."Contact"

    The incoming script to get it on the reporter should be:

    issue.reporter = nodeHelper.getUserByEmail(replica.customFields."Contact".value)

    Let me know if this works for you.

    Kind regards,

    Ariel

  4. Rakesh Govardhan

    Hi Ariel, 


    It didn't work


  5. Ariel Aguilar

    If you instead:

    issue.reporter = nodeHelper.getUserByEmail(replica.customFields."Contact".value.value)
CommentAdd your comment...