Any idea?
please find the code (in case there is something wrong)
<
ProductTrees_Lines xmlns="">
<xsl:for-each select="$msg/BOM/BO/ProductTrees_Lines/row">
<row>
<xsl:if test="$msg/BOM/BO/ProductTrees/row/U_ReadyToPush='Y'">
<ItemCode>
<xsl:value-of select="$msg/BOM/BO/ProductTrees_Lines/row/ItemCode"></xsl:value-of>
</ItemCode>
<Quantity>
<xsl:value-of select="$msg/BOM/BO/ProductTrees_Lines/row/Quantity"></xsl:value-of>
</Quantity>
<IssueMethod>
<xsl:value-of select="$msg/BOM/BO/ProductTrees_Lines/row/IssueMethod"></xsl:value-of>
</IssueMethod>
<Comment>
<xsl:value-of select="$msg/BOM/BO/ProductTrees_Lines/row/Comment"></xsl:value-of>
</Comment>
<ParentItem>
<xsl:value-of select="$msg/BOM/BO/ProductTrees_Lines/row/ParentItem"></xsl:value-of>
</ParentItem>
</xsl:if>
<!--BREAK
BREAK BREAK
BREAK
-->
<xsl:if test="$msg/BOM/BO/ProductTrees/row/U_ReadyToPush='U'">
<ItemCode>
<xsl:value-of select="$msg/BOM/BO/ProductTrees_Lines/row/ItemCode"></xsl:value-of>
</ItemCode>
<Quantity>
<xsl:value-of select="$msg/BOM/BO/ProductTrees_Lines/row/Quantity"></xsl:value-of>
</Quantity>
<IssueMethod>
<xsl:value-of select="$msg/BOM/BO/ProductTrees_Lines/row/IssueMethod"></xsl:value-of>
</IssueMethod>
<Comment>
<xsl:value-of select="$msg/BOM/BO/ProductTrees_Lines/row/Comment"></xsl:value-of>
</Comment>
<ParentItem>
<xsl:value-of select="$msg/BOM/BO/ProductTrees_Lines/row/ParentItem"></xsl:value-of>
</ParentItem>
</xsl:if>
</row>
</xsl:for-each>
</ProductTrees_Lines>