Ideally in this situation to construct your Tamino query so that it only selects the data you actually want to display. However that’s a bit awkward to achieve using _xql, it will be much easier with XQuery.
For the moment, it probably makes sense to retrieve the whole DataFromVendor object from Tamino, and use your stylesheet to select the part that you want to display. To do this, you’ll need to supply a parameter to the stylesheet.
In the stylesheet itself, write:
<xsl:param name=“OtherInfo”>
<xsl:template match=“/”>
…
<xsl:apply-templates select=“//Applicant[OtherInfo=$OtherInfo]”/>
…
And in the query URL, specify the value of this stylesheet parameter as xslt_OtherInfo=AAA. The Passthru Servlet (version 4.1.1) will extract this from the Query URL and pass it as a parameter to the transformation.
Michael Kay
#API-Management#Tamino#webMethods