Custom Conflict Resolution Strategy
Last updated
<Title>
<xsl:variable xmlns:xsl="http://www.w3.org/1999/XSL/Transform" name="xPathVariable" select="SourceXML/sourceSystemNew/Property/Created-space-By/userEmail"/>
<xsl:choose xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:when test="$xPathVariable='test@opshub.com'">
<xsl:value-of select="SourceXML/targetSystem/Property/Title"/>
</xsl:when>
<xsl:otherwise>
<xsl:value-of select="SourceXML/sourceSystemNew/Property/Title"/>
</xsl:otherwise>
</xsl:choose>
</Title>