Re: [xsl] node comparision for equality

Subject: Re: [xsl] node comparision for equality
From: "J.Pietschmann" <j3322ptm@xxxxxxxx>
Date: Wed, 14 Jun 2006 00:27:34 +0200
uppaluri satyaprasad wrote:
however i need to also test if
BusPartnerCodeValue (i.e. D06001 here) and BusPartnerCodeTypeCode (i.e. 00003) are equal in two nodes within BPPLCode.
if these two values are equal, the BPPLCode nodes are equal and i shall process only one node.
we can ignore ProductLevel/ProductLevelCode here.

This looks like the "select distinct" problem, which you can solve with an approach described here: http://jenitennison.com/xslt/grouping/index.xml Use grouping by content, using concat(BusPartnerCodeType/BusPartnerCodeTypeCode,':',BusPartnerCodeValue) as key indicator. (unfortunately, http://jenitennison.com/xslt/unique.xml is a stub).

J.Pietschmann

Current Thread