qegirzcrm47474Emobbysmelm
New Member
I have an XML with data as follows\[code\]<Item1> <item2> <Item3>111</Item3> <Item2></Item11>\[/code\]To get the value 111 in Item3\[code\]<xsl:choose> <xsl:value-of select="Item1/Item2/Item3"/></xsl:choose>\[/code\]In XSLT . Now I need to get the following:\[code\]<Product1> <Product2> <Product3 ValidYN="Y" ProducType="ABC">333</Product3> <Product3 ValidYN="Y" ProducType="DEF">444</Product3> <Product3 ValidYN="Y" ProducType="GHI">555</Product3> <Product12></Product1>\[/code\]I need to take values 333 , 444 , 555 based on ProducType.How to do the same using XSLT