Note
We've packed up and moved from Confluence to Discourse to bring you a better, more interactive space. Out of courtesy we didn't migrate your user account so - you will have to signup again
The Exalate team will be on holiday for the coming days - returning Jan 4
Enjoy & stay safe
Dear All,
We have started use the exalate.
The synching of basic fields and links are working.
However, I cannot solve the next synchronizations:
- Fix Version (It is prepared in both system)
- Epic (you can see more version in the command lines which I used) but does not work. I used this documentation: https://docs.idalko.com/exalate/pages/viewpage.action?pageId=42631412
- Custom fields (it is prepared in both system) and I used this documentations and linked pages, but it does not work either:
https://docs.idalko.com/exalate/display/ED/How+to+Synchronize+Custom+Fields#HowtoSynchronizeCustomFields-text
- Isue type does not works trustworthy. I used https://docs.idalko.com/exalate/display/ED/How+to+synchronize+issue+type
- ParentID is unknown on destination side
Could you please help me and us on these topics?
Thank you in advance,
Eva
Attached the scripts:
*The outgoing sync* on source side
replica.key = issue.key
replica.type = issue.type
replica.reporter = issue.reporter
replica.summary = issue.summary
replica.description = issue.description
replica.labels = issue.labels
replica.comments = issue.comments
replica.resolution = issue.resolution
replica.status = issue.status
replica.parentId = issue.parentId
replica.priority = issue.priority
replica.attachments = issue.attachments
replica.project = issue.project
//Comment these lines out if you are interested in sending the full list of versions and components of the source project.
replica.project.versions = []
replica.project.components = []
//Custom Fields
replica.customFields."Test results" = issue.customFields."Test results"
replica.customFields."Priority HL" = issue.customFields."Priority HL"
// EPIC sync Ensure that the Epic is synced first, such that stories sent later can be associated to the right epic
Epic.send()
//Links
replica.issueLinks = issue.issueLinks
*The Incoming sync* on destination side
replica.key = issue.key
replica.type = issue.type
replica.reporter = issue.reporter
replica.summary = issue.summary
replica.description = issue.description
replica.labels = issue.labels
replica.comments = issue.comments
replica.resolution = issue.resolution
replica.status = issue.status
replica.parentId = issue.parentId
replica.priority = issue.priority
replica.attachments = issue.attachments
replica.project = issue.project
//Comment these lines out if you are interested in sending the full list of versions and components of the source project.
replica.project.versions = []
replica.project.components = []
//Custom Fields
replica.customFields."Test results" = issue.customFields."Test results"
replica.customFields."Priority HL" = issue.customFields."Priority HL"
// EPIC sync Ensure that the Epic is synced first, such that stories sent later can be associated to the right epic
Epic.send()
//Links
replica.issueLinks = issue.issueLinks
Lets take it one at a time, and create an answer for each topic?