<core:FragmentDefinition
	xmlns="sap.m"
	xmlns:core="sap.ui.core"
	xmlns:template="http://schemas.sap.com/sapui5/extension/sap.ui.core.template/1">

	<!-- "field" MUST point to a com.sap.vocabularies.Communication.v1.DataField -->
	<HBox>
		<template:with path="field>Value" helper="AH.resolvePath" var="target">
			<!-- go to entity type's property and check SAP Annotations for OData Version 2.0 -->
			<template:if test="{= ${target>sap:semantics} === 'tel'}" >
				<core:Icon src="sap-icon://phone" width="2em"/>
			</template:if>
		</template:with>
		<Text text="{path: 'field>Value', formatter: 'AH.format'}"/>
	</HBox>
</core:FragmentDefinition>