2
1
0

When a incomming update snyc comes in... we want to trigger specific transition on the destination project only if certain fields are getting updated.... if certain fields are not changing we don't want to trigger any transition...

    CommentAdd your comment...

    1 answer

    1.  
      1
      0
      -1

      This logic can be added in the change processor with following generic code segment


      // Transition only if the 'check it' field is set to 'done' 
      ...
      if (issue.customFields."check it"?.value == "done") {
         workflowHelper.transition(issue, "next step")
      }
      ...



      Hope this helps


      1. Samip K Banker

        Francis:

        What I want is to see if "check it" was updated or not... and only if this field is updated then perform "Next step"...

        ~Samip

      2. Samip K Banker

        Any update on this?


      3. user-3fd1a

        Samip,

        Do you want to check if the local issue field is changed or the remote?

      4. Samip K Banker

        Is this posible in "Incomming Sync"

          If  (remote.customfield."check it".value != isuse.customfield."check it".value)

          {

                // perform a  specific transition     

          } 


      5. user-3fd1a

        Sure, no problem

        Give it a try and let know  the outcome



      CommentAdd your comment...