	<!--
	###################################################################
	Add CUA authorization Roles and Profiles (example)
	###################################################################
	-->
	<xsl:template name="add-cua-auths">
		<!--
		Sample CUA distribution settings.
		- Central SAP system is ADMCLNT100
		- Child SAP system is ADMCLNT500
		- Driver's logical system is DRVCLNT100 
		-->
		<add-attr attr-name="DirXML-sapLocRoles">
			<!--
			In a CUA environment, set driver's LS name with a blank role.
			This allows the driver to receive events from SAP.
			-->
			<value>
				<xsl:value-of select="'DRVCLNT100:'"/>
			</value>
			<!--
			Setting the target LS name with a blank CUA role allows the
			User object to log on to the target child system but receive no rights.
			-->
			<value>
				<xsl:value-of select="'ADMCLNT100:'"/>
			</value>
			<!--
			The third value shows how to set a 'real' CUA role for a child logical
			system.  This causes distribution from the Central system to the child system
			and sets the Employee Self-Service role.
			-->
			<value>
				<xsl:value-of select="'ADMCLNT500:SAP_ESSUSER'"/>
			</value>
		</add-attr>
		<!--
		Example of setting a 'real' CUA profile.
		-->
		<add-attr attr-name="DirXML-sapLocProfiles">
			<value>
				<xsl:value-of select="'DRVCLNT100:'"/>
			</value>
			<value>
				<xsl:value-of select="'ADMCLNT100:SAP_NEW'"/>
			</value>
			<value>
				<xsl:value-of select="'ADMCLNT500:SAP_ALL'"/>
			</value>
		</add-attr>
	</xsl:template>
