I have SSRS 2016 and some reports (similar structure but different names and data) to be transformed during xml export.
Report xml example:
<?xml version="1.0" encoding="utf-8"?>
<Report xsi:schemaLocation="My_Report_1 http://..." Name="My_Report_1"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="My_Report_1">
<Table>
<tbl_MainGroup_Collection>
<Data TxDev="abc" DateTime="20200906001057" DBVersion="1.0" ProductVersion="1.0" Version="1.0">
<tbl_SiteGroup_Collection>
<Site SiteName="All sites">
<tbl_ColumnGroup_Collection>
<Column Column1="Week 33" Column2="Week 34">
<Lines>
<Line LineName="abc" Column1="0.00" Column2="0.00" LineNumber="1" EntityType="0" EntityNo="1" />
<Line LineName="dfg" LineNumber="-1" EntityType="0" EntityNo="2" />
</Lines>
</Column>
</tbl_ColumnGroup_Collection>
</Site>
</tbl_SiteGroup_Collection>
</Data>
</tbl_MainGroup_Collection>
</Table>
</Report>
XSLT transformation example:
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<xsl:stylesheet version="1.0"
xmlns:x="My_Report_1"
exclude-result-prefixes="x"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output omit-xml-declaration="no" indent="yes" method="xml" />
<xsl:template match="x:Report|x:Table|x:tbl_MainGroup_Collection">
<xsl:apply-templates />
</xsl:template>
<xsl:template match="x:Report/x:Table//x:Data">
<Data TxDev="{@TxDev}" DateTime="{@DateTime}" DBVersion="{@DBVersion}" ProductVersion="{@ProductVersion}" Version="{@Version}">
<xsl:apply-templates select="x:tbl_SiteGroup_Collection"/>
</Data>
</xsl:template>
<xsl:template match="x:tbl_SiteGroup_Collection">
<Sites>
<xsl:apply-templates select="x:Site"/>
</Sites>
</xsl:template>
<xsl:template match="x:Site">
<Site SiteNumber="{@SiteNumber}" SiteID="{@SiteID}" SiteName="{@SiteName}">
<xsl:apply-templates select="x:tbl_ColumnGroup_Collection"/>
</Site>
</xsl:template>
<xsl:template match="x:tbl_ColumnGroup_Collection">
<Columns>
<xsl:apply-templates select="x:Column"/>
</Columns>
</xsl:template>
<xsl:template match="x:Column">
<xsl:for-each select="@*[starts-with(local-name(), 'Column')]">
<Column ColumnNumber="{translate(local-name(),'Column','')}" ColumnName="{.}">
<xsl:variable name="attrName" select="local-name()"/>
<xsl:for-each select="../x:Lines">
<xsl:call-template name="Lines">
<xsl:with-param name="ColumnName" select="$attrName"/>
</xsl:call-template>
</xsl:for-each>
</Column>
</xsl:for-each>
</xsl:template>
<xsl:template name="Lines" match="x:Lines">
<xsl:param name="ColumnName"/>
<Lines>
<xsl:for-each select="x:Line[@LineNumber>0 and @EntityType=0]">
<xsl:sort select="@LineNumber" data-type="number" />
<xsl:call-template name="Line">
<xsl:with-param name="ColumnName" select="$ColumnName"/>
</xsl:call-template>
</xsl:for-each>
</Lines>
</xsl:template>
<xsl:template name="Line" match="x:Line">
<xsl:param name="ColumnName"/>
<Line LineNumber="{@LineNumber}" LineName="{@LineName}" >
<xsl:variable name="LineNo" select="@LineNumber"/>
<xsl:choose>
<xsl:when test="count(../x:Line[@LineNumber=$LineNo and @EntityType=1])>0">
<xsl:attribute name="Value">
<xsl:value-of select="@*[local-name()=$ColumnName]"/>
</xsl:attribute>
<Departments>
<xsl:for-each select="../x:Line[@LineNumber=$LineNo and @EntityType=1]">
<xsl:sort select="@EntityNo" data-type="number"/>
<Department DepNumber="{@EntityNo}" DepName="{@LineName}" Value="{@*[local-name()=$ColumnName]}">
</Department>
</xsl:for-each>
</Departments>
</xsl:when>
<xsl:when test="count(../x:Line[@LineNumber=$LineNo and @EntityType=2])>0">
<xsl:if test="@*[local-name()=$ColumnName]">
<xsl:attribute name="Value">
<xsl:value-of select="@*[local-name()=$ColumnName]"/>
</xsl:attribute>
</xsl:if>
<MOPs>
<xsl:for-each select="../x:Line[@LineNumber=$LineNo and @EntityType=2]">
<xsl:sort select="@EntityNo" data-type="number"/>
<MOP MOPNumber="{@EntityNo}" MOPName="{@LineName}" Value="{@*[local-name()=$ColumnName]}">
</MOP>
</xsl:for-each>
</MOPs>
</xsl:when>
<xsl:otherwise>
<xsl:attribute name="Value">
<xsl:value-of select="@*[local-name()=$ColumnName]"/>
</xsl:attribute>
</xsl:otherwise>
</xsl:choose>
</Line>
</xsl:template>
<xsl:template match="/">
<xsl:apply-templates />
</xsl:template>
</xsl:stylesheet>
Due to namespace binding xmlns:x="My_Report_1" I can use this xslt transformation only for this report. Is there any way to produce a more generic xslt transformation that would work with all such reports, regardless of the value of the namespace-uri? Provide a parameter for the namespace value?
Thanks in advance.