Hi,
We have a problem. We seems to be missing our related products when we are looping through BOMProducts.
We are using this XSLT code:
<xsl:for-each select="loop[@name='BOMProducts']/item">
<xsl:for-each select="loop[@name='ProductRelatedGroups']/item">
<xsl:for-each select="loop[@name='RelatedProducts']/item">
Related product for BOMproduct
</xsl:for-each>
</xsl:for-each>
</xsl:for-each>
We have tried getting the XML that is passed to the XSLT, and there we can see related products on the main product, but we can not see related products on BOMProducts. How can we fix this?