1
0
-1

i am trying to map alm detected on date (system field) to jira custom date field

alm (sending )
replica.customFields."Detected on Date" = defect.created

jira (receiving)
issue.customFields."Detected on Date".value = replica.customFields."Detected on Date".value

but its not working error is displayed.

    CommentAdd your comment...

    2 answers

    1.  
      1
      0
      -1

      i tried the below but it didn't work.


      replica.customFields."Detected on Date" = defect.created


      It seems defect.created is not the correct field name to be used

      i tried "detected-in-rcyc" but it says no such property


      1. André Leroy-Beaulieu Castro

        Hi Sandeep,


        What version of Exalate for HPQCNode are you using? This system field is supported from release 4.4 onwards. 


        Thanks,

        André

      2. André Leroy-Beaulieu Castro

        Hi Sandeep,


        This will only work for you from Exlaate 4.4.2 and on, you are also getting an error because of you're trying to save the value in a custom field, your outgoing (alm) should be:


        replica.created = defect.created


        Thanks,

        André

      3. SANDEEP ADE

        We are on 4.4.1 


        Can you send link to the latest exalate version for ALM

      CommentAdd your comment...
    2.  
      1
      0
      -1
      • Are you working on Jira Cloud  or Jira Server
      • In the outgoing sync, can you try instead of 
      replica.customFields."Detected on Date" = defect.created

      use a customKey as in 

      replica.customKeys."Detected on Date" = defect.created
      • In the incoming sync, you  have to make the same change

        issue.customFields."Detected on Date".value = replica.customKeys."Detected on Date"


      And let  us know

      1. André Leroy-Beaulieu Castro

        It's possible that the name of the field is "detected-in-rcyc".

      CommentAdd your comment...