Why can't I see the Modeler on this to see mapping?
Also, Why does this not show all fields that are mapped?

<xsl:stylesheet xmlns:xsl="www.w3.org/.../Transform" version="2.0" xmlns:ns1="schema.infor.com/.../2">
<xsl:template match="node()|@*">
<xsl:copy>
<xsl:apply-templates select="node()|@*"/>
</xsl:copy>
</xsl:template>
<xsl:template match="SyncLIRRDBPersonnel">
<ns1:SyncPersonnel>
<xsl:apply-templates select="node()|@*"/>
</ns1:SyncPersonnel>
</xsl:template>
<xsl:template match="LIRRDBPersonnel">
<ns1:Personnel>
<xsl:apply-templates select="node()|@*"/>
</ns1:Personnel>
</xsl:template>
<xsl:template match="*">
<xsl:element name="ns1:{name()}" namespace="schema.infor.com/.../2">
<xsl:copy-of select="namespace::*"/>
<xsl:apply-templates select="node()|@*"/>
</xsl:element>
</xsl:template>
</xsl:stylesheet>