[XSL-LIST Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message]

Re: Re: Comma concatenation for all unique node value

Subject: Re: Re: Comma concatenation for all unique node value based on Sibling
From: "Mukul Gandhi" <gandhi.mukul@xxxxxxxxx>
Date: Sat, 31 Mar 2007 17:48:32 +0530
Re:  Re: Comma concatenation for all unique node value
Please try (or adapt it) this 1.0 stylesheet:

<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">

<xsl:output method="text" />

<xsl:key name="by-product-number" match="LINE_ITEM[CUST_MSG = 'Y']"
use="PRODUCT_NUMBER" />

<xsl:template match="/">
  <xsl:for-each select="//LINE_ITEM[CUST_MSG = 'Y'][generate-id() =
generate-id(key('by-product-number', PRODUCT_NUMBER)[1])]">
    <xsl:value-of select="PRODUCT_NUMBER" />
    <xsl:if test="position() &lt; last()-1"><xsl:text>, </xsl:text></xsl:if>
    <xsl:if test="position()=last()-1"><xsl:text> and </xsl:text></xsl:if>
    <xsl:if test="position()=last()"><xsl:text>.</xsl:text></xsl:if>
  </xsl:for-each>
</xsl:template>

</xsl:stylesheet>

I suspect, your xsl:key definition would need changing. But without
seeing your complete code, it's difficult to guess.

On 3/31/07, Senthilkumaravelan K <skumaravelan@xxxxxxxxxxxxxx> wrote:
Hi ,
I am using XSLT 1.0 and
I have tried the mentioned logic
<xsl:variable name="itemsOfthisProduct" select="//LINE_ITEM"/>
<!--<xsl:value-of
select="count($itemsOfthisProduct/PRODUCT_NUMBER[generate-id() =
generate-id(key('getUniqueData',.))])"/>
<xsl:for-each select="$itemsOfthisProduct/PRODUCT_NUMBER[generate-id()
= generate-id(key('getUniqueData',.))]"> -->
<!--<xsl:for-each
select="//SAP_PRODUCT_NUMBER[not(.=preceding::SAP_PRODUCT_NUMBER)][following-sibling:CUST_MSG=
'Y']"> -->
<xsl:for-each select="$itemsOfthisProduct/PRODUCT_NUMBER[generate-id()
= generate-id(key('getUniqueData',.))][following-sibling::CUST_WARN[1]=
'Y']">
<!--<xsl:if test="position() &gt; 1"><xsl:text>, </xsl:text></xsl:if>-->
<xsl:value-of select="./PRODUCT_NUMBER"/>
<xsl:if test="position() &lt; last()-1"><xsl:text>, </xsl:text></xsl:if>
<xsl:if test="position()=last()-1"><xsl:text> and </xsl:text></xsl:if>
<xsl:if test="position()=last()"><xsl:text>.</xsl:text></xsl:if>
</xsl:for-each>

It works on most of the cases
It is not showing the If the same product number first one with "Y"
and second one with "N" and it is ignoring  it.
How I could make it display it?
Any suggestions !!!
Thanks,
Senthil
On 3/30/07, Mukul Gandhi <gandhi.mukul@xxxxxxxxx> wrote:
> With XSLT 2.0, you can do as following:
>
> <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="2.0">
>
>  <xsl:output method="text" />
>
>  <xsl:template match="/">
>     <xsl:value-of
> select="distinct-values(//PRODUCT_NUMBER[following-sibling::CUST_MSG[1]
> = 'Y'])" separator="," />
>  </xsl:template>
>
> </xsl:stylesheet>
>
> You could adapt the idea to suit your requirement.
>
> On 3/30/07, Senthilkumaravelan K <skumaravelan@xxxxxxxxxxxxxx> wrote:
> > Hi ,
> > Is there anyway I could select all the unique PRODUCT_NUMBER with
> > their sibling node CUST_MSG=Y in a for loop so that i can concatenate
> > comma.if it is more than one .
> > Please help me this .
> > Thanks,
> > Senthil
> > On 3/29/07, Senthilkumaravelan K <skumaravelan@xxxxxxxxxxxxxx> wrote:
> > > Hi
> > > <LINE_ITEMS>
> > > <LINE_ITEM>
> > > <PRODUCT_NUMBER>1</PRODUCT_NUMBER>
> > > <CUST_MSG>Y</CUST_MSG>
> > > </LINE_ITEM>
> > > <LINE_ITEM>
> > > <PRODUCT_NUMBER>1</PRODUCT_NUMBER>
> > > <CUST_MSG>Y</CUST_MSG>
> > > </LINE_ITEM>
> > > <LINE_ITEM>
> > > <PRODUCT_NUMBER>1</PRODUCT_NUMBER>
> > > <CUST_MSG>Y</CUST_MSG>
> > > </LINE_ITEM>
> > > <LINE_ITEM>
> > > <PRODUCT_NUMBER>2</PRODUCT_NUMBER>
> > > <CUST_MSG>N</CUST_MSG>
> > > </LINE_ITEM>
> > > </LINE_ITEMS>
> > >
> > > My expected out is
> > > <products>1 and 2.
> > > depends on the CUST_MSG value I need to concatenate "," and respectively.
> > >
> > > Thanks,
> > > Senthil


--
Regards,
Mukul Gandhi

Current Thread

PURCHASE STYLUS STUDIO ONLINE TODAY!

Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced!

Buy Stylus Studio Now

Download The World's Best XML IDE!

Accelerate XML development with our award-winning XML IDE - Download a free trial today!

Don't miss another message! Subscribe to this list today.
Email
First Name
Last Name
Company
Subscribe in XML format
RSS 2.0
Atom 0.3
Site Map | Privacy Policy | Terms of Use | Trademarks
Free Stylus Studio XML Training:
W3C Member
Stylus Studio® and DataDirect XQuery ™are products from DataDirect Technologies, is a registered trademark of Progress Software Corporation, in the U.S. and other countries. © 2004-2013 All Rights Reserved.