<?xml version="1.0" encoding="UTF-8" ?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:param name="StockCode" />
<xsl:param name="Customer" />
<xsl:template match="/">
<Query xmlns:xsd="http://www.w3.org/2001/XMLSchema-instance" xsd:noNamespaceSchemaLocation="TPMQPP.XSD">
<Key>
<Customer>
<xsl:value-of select="$Customer" />
</Customer>
<StockCode>
<xsl:value-of select="$StockCode" />
</StockCode>
</Key>
</Query>
</xsl:template>
</xsl:stylesheet>