Hi ,
iam facing a unique issue
i want to print maximum postion by using the function MAX
My style sheet is working fine in Jdev but same XSL sheet is giving error when i run it in oracle Applications.
below is xsl logic
Code:
<xsl:template name="ttpgds" match="ARXEURSL" mode="temp2">
<xsl:variable name="x">
<xsl:for-each-group select="G_ROW[INTRA_EU_TRX_CODE =('GOOD')]" group-by="concat(VAT_TAX_NO,BILL_CUST_NAME,INTRA_EU_TRX_CODE)">
<CHKPST><xsl:value-of select="position()"/></CHKPST><xsl:text>
</xsl:text>
</xsl:for-each-group>
</xsl:variable>
<xsl:for-each select="$x">
<xsl:variable name="jCount" select="max(CHKPST)"/>
<xsl:value-of select="ceiling($jCount)"/>
</xsl:if>
</xsl:for-each>
</xsl:template>
Error iam getting in oracle applications.
Caused by: oracle.xdo.parser.v2.XPathException: Expected ')' instead of 'CHKPST'.
Thanks
Anil