Application Development Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 

XML transformation

Former Member
0 Kudos

Hi All,

I am creating a xml transformation as below

<xsl:element name="ROW">

<xsl:attribute name="TAB">

<xsl:value-of select="0"/> and expecting an output

<ROW TAB="0" LINE="0" NAME="FIRM_EDRPOU">

but actually I am getting output as below

<ROW TAB="0">

Please let me know the xml transformation need to be written in order to get the required output

Thanks

Bala Duvvuri

2 REPLIES 2

Lukas_Weigelt
Active Contributor
0 Kudos

Just guessing, maybe:

<xsl:element name="ROW">

<xsl:attribute name="TAB">

<xsl:value-of select="0"/>

<xsl:attribute name="LINE">

<xsl:value-of select="0"/>

<xsl:attribute name="NAME">

<xsl:value-of select="FIRM_EDRPOU"/>

Cheers, Lukas

0 Kudos

Thanks Lukas for the answer it's not working though

Thanks

Bala Duvvuri