Hi I´m trying to move some tags to a data cobol structure, this tags have occurs.
how do i have to refer the data cobol structure at the .xslt.
normally its automatic, but If want to parser one by
I have tried these ones and always got error,
<xsl:template match="d:Document/d:BkToCstmrDbtCdtNtfctn/d:GrpHdr/d:MsgId[position()=1]">
<xsl:element name="docume54.campo1[position()=1]">
<xsl:apply-templates select="@* | node()"/>
</xsl:element>
</xsl:template>
<xsl:template match="d:Document/d:BkToCstmrDbtCdtNtfctn/d:GrpHdr/d:MsgId[position()=1]">
<xsl:element name="docume54.campo1[1]">
<xsl:apply-templates select="@* | node()"/>
</xsl:element>
</xsl:template>
<xsl:template match="d:Document/d:BkToCstmrDbtCdtNtfctn/d:GrpHdr/d:MsgId[position()=1]">
<xsl:element name="docume54.campo1(1)">
<xsl:apply-templates select="@* | node()"/>
</xsl:element>
</xsl:template>